Jesse Liu commited on
Commit
c26f5b3
·
1 Parent(s): 1656a8b

update files

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. chatgpt.py +367 -248
  2. deploy_to_huggingface.py +143 -0
  3. evaluation_module_readme.md +84 -197
  4. google_drive_sync.py +262 -0
  5. google_setup_guide.md +63 -0
  6. patient_evaluations/patient_eval_10042908_adm_20358696_2025-10-07T03-13-07.353927.json +16 -0
  7. patient_evaluations/patient_eval_10072153_adm_21253864_2025-09-10T12-06-13.364235.json +16 -0
  8. patient_evaluations/patient_eval_12991336_adm_25464784_2025-10-07T04-32-04.210907.json +16 -0
  9. patient_evaluations/patient_eval_19254962_2025-09-10T03-03-04.131315.json +16 -0
  10. patient_evaluations/patient_evaluations_master.csv +4 -0
  11. per_admission_summaries/llama-3.2-3b_per_admission.json +0 -0
  12. per_admission_summaries/llama-3.2-3b_per_admission.jsonl +0 -0
  13. per_admission_summaries/llama-3.2-3b_per_admission_grouped.jsonl +0 -0
  14. requirements.txt +5 -0
  15. src/conversation.py +1 -1
  16. src/server.py +3 -2
  17. summaries/subject_11402775_hadm_25285222_input.txt +724 -0
  18. summaries/subject_11402775_hadm_25285222_model_input.txt +751 -0
  19. summaries/subject_11402775_hadm_25285222_summary.txt +75 -0
  20. summaries/subject_12991336_hadm_25464784_input.txt +475 -0
  21. summaries/subject_12991336_hadm_25464784_model_input.txt +496 -0
  22. summaries/subject_12991336_hadm_25464784_summary.txt +92 -0
  23. summaries/subject_12991336_hadm_26941734_input.txt +276 -0
  24. summaries/subject_12991336_hadm_26941734_model_input.txt +304 -0
  25. summaries/subject_12991336_hadm_26941734_summary.txt +74 -0
  26. summaries/subject_14497209_hadm_20716207_input.txt +144 -0
  27. summaries/subject_14497209_hadm_20716207_model_input.txt +161 -0
  28. summaries/subject_14497209_hadm_20716207_summary.txt +85 -0
  29. summaries/subject_14497209_hadm_24931338_input.txt +412 -0
  30. summaries/subject_14497209_hadm_24931338_model_input.txt +443 -0
  31. summaries/subject_14497209_hadm_24931338_summary.txt +69 -0
  32. summaries/subject_14497209_hadm_29918801_input.txt +376 -0
  33. summaries/subject_14497209_hadm_29918801_model_input.txt +405 -0
  34. summaries/subject_14497209_hadm_29918801_summary.txt +68 -0
  35. summaries/subject_14899292_hadm_24095441_input.txt +373 -0
  36. summaries/subject_14899292_hadm_24095441_model_input.txt +389 -0
  37. summaries/subject_14899292_hadm_24095441_summary.txt +77 -0
  38. summaries/subject_14899292_hadm_24253579_input.txt +351 -0
  39. summaries/subject_14899292_hadm_24253579_model_input.txt +371 -0
  40. summaries/subject_14899292_hadm_24253579_summary.txt +68 -0
  41. summaries/subject_14899292_hadm_26510460_input.txt +230 -0
  42. summaries/subject_14899292_hadm_26510460_model_input.txt +247 -0
  43. summaries/subject_14899292_hadm_26510460_summary.txt +79 -0
  44. summaries/subject_16139570_hadm_20366586_input.txt +379 -0
  45. summaries/subject_16139570_hadm_20366586_model_input.txt +398 -0
  46. summaries/subject_16139570_hadm_20366586_summary.txt +81 -0
  47. summaries/subject_16139570_hadm_23551539_input.txt +502 -0
  48. summaries/subject_16139570_hadm_23551539_model_input.txt +532 -0
  49. summaries/subject_16139570_hadm_23551539_summary.txt +55 -0
  50. summaries/subject_16299682_hadm_27576967_input.txt +242 -0
chatgpt.py CHANGED
@@ -8,8 +8,12 @@ import requests
8
  import time
9
  import threading
10
  import json
 
11
  import csv
12
  from datetime import datetime, timedelta
 
 
 
13
 
14
  session = requests.Session()
15
 
@@ -20,6 +24,26 @@ base_url = "http://localhost:8080"
20
  timeout = 60
21
  concurrency_count=10
22
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
23
  async def initialization(api_key, username):
24
  url = f"{base_url}/api/initialization"
25
  headers = {'Content-Type': 'application/json'}
@@ -257,10 +281,10 @@ def submit_patient_evaluation(patient_id, patient_input, ai_summary, overall_rat
257
  clarity, feedback, expert_name, sentence_comments):
258
  """Process and save the patient evaluation"""
259
  if not expert_name.strip():
260
- return "Please enter your name before submitting evaluation."
261
 
262
  if overall_rating == 0:
263
- return "Please provide an overall rating before submitting."
264
 
265
  categories = {
266
  'medical_accuracy': medical_accuracy,
@@ -351,6 +375,30 @@ def get_patient_evaluation_stats():
351
  except Exception as e:
352
  return f"Error reading patient evaluation data: {str(e)}"
353
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
354
  def update_methods(chapter):
355
  return gr.update(choices=interview_protocols[chapter], value=interview_protocols[chapter][0])
356
 
@@ -386,9 +434,23 @@ css = """
386
  font-size: 12px !important;
387
  width: auto !important;
388
  }
 
 
 
 
 
 
 
 
 
 
 
 
389
  """
390
 
391
  with gr.Blocks(css=css) as app:
 
 
392
  chatbot_type_state = gr.State('enhanced')
393
  api_key_state = gr.State()
394
  selected_title = gr.State()
@@ -406,11 +468,116 @@ with gr.Blocks(css=css) as app:
406
  data.append(json.loads(line))
407
  return data
408
 
409
- jsonl_path = "/Users/liuzijie/Desktop/chatbot-mimic-notes/assets/llama-3.2-3b_io.jsonl"
410
- llama_results = load_jsonl(jsonl_path)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
411
  options = []
412
- for r in llama_results:
413
- options.append({'title': 'Patient:' + str(r['patient_id']), 'text': r['input'], 'note': r['output']})
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
414
 
415
  with gr.Tabs():
416
  with gr.TabItem("🏥 Medical Chat"):
@@ -525,15 +692,25 @@ with gr.Blocks(css=css) as app:
525
 
526
  with gr.TabItem("🔬 Expert Evaluation"):
527
  with gr.Row():
528
- with gr.Column(scale=2):
529
  # Patient Sample Selection for Evaluation
530
  with gr.Box():
531
  gr.Markdown("## 📋 Select Patient Sample")
 
 
532
  option_titles = [option["title"] for option in options]
533
 
 
 
534
  eval_patient_radio = gr.Radio(
535
- choices=option_titles,
536
- label="Choose Patient Sample for Evaluation",
 
 
 
 
 
 
537
  interactive=True,
538
  value=None
539
  )
@@ -541,13 +718,14 @@ with gr.Blocks(css=css) as app:
541
  # Display selected patient data
542
  with gr.Accordion("📄 Patient Data Preview", open=False):
543
  eval_patient_preview = gr.Textbox(
544
- label="Original Patient Data",
545
  interactive=False,
546
- lines=4,
547
- value="Select a patient to preview data"
 
548
  )
549
 
550
- with gr.Column(scale=3):
551
  # Patient Sample Evaluation Module
552
  with gr.Box():
553
  gr.Markdown("## 🏥 Patient Sample Evaluation Module")
@@ -570,73 +748,19 @@ with gr.Blocks(css=css) as app:
570
  patient_input_display = gr.Textbox(
571
  label="Original Patient Data",
572
  interactive=False,
573
- lines=6,
574
- value="Select a patient sample to view data"
 
575
  )
576
 
577
- # AI Summary Display with Text Selection
578
- with gr.Accordion("🤖 AI Generated Summary (Click & Drag to Select Text)", open=True):
579
- ai_summary_html = gr.HTML(
580
- value="""
581
- <div id='ai-summary-content' style='
582
- border: 1px solid #ddd;
583
- padding: 15px;
584
- min-height: 200px;
585
- background: transparent;
586
- color: inherit;
587
- user-select: text;
588
- line-height: 1.6;
589
- font-family: inherit;
590
- border-radius: 6px;
591
- cursor: text;
592
- '>
593
- <p style='color: inherit; font-style: italic; opacity: 0.7;'>Select a patient to view AI summary...</p>
594
- <p style='color: inherit; font-size: 12px; margin-top: 10px; opacity: 0.5;'>💡 Tip: Click and drag to select text, then add comments below</p>
595
- </div>
596
- <style>
597
- ::selection {
598
- background-color: #ffff00 !important;
599
- color: #000 !important;
600
- }
601
- ::-moz-selection {
602
- background-color: #ffff00 !important;
603
- color: #000 !important;
604
- }
605
- #ai-summary-content ::selection {
606
- background-color: #ffff00 !important;
607
- color: #000 !important;
608
- }
609
- #ai-summary-content ::-moz-selection {
610
- background-color: #ffff00 !important;
611
- color: #000 !important;
612
- }
613
- </style>
614
- <script>
615
- document.addEventListener('mouseup', function() {
616
- const selection = window.getSelection();
617
- const selectedText = selection.toString().trim();
618
- if (selectedText && selectedText.length > 0) {
619
- // Update the selected text display
620
- const selectedTextElement = document.querySelector('textarea[data-testid*="selected_text_display"]');
621
- if (selectedTextElement) {
622
- selectedTextElement.value = selectedText;
623
- selectedTextElement.dispatchEvent(new Event('input', { bubbles: true }));
624
- }
625
- }
626
- });
627
- </script>
628
- """,
629
- label="AI Summary"
630
- )
631
-
632
- # Selected text display
633
- selected_text_display = gr.Textbox(
634
- label="🎯 Currently Selected Text",
635
- interactive=False,
636
- lines=2,
637
- placeholder="Select text from the AI summary above by clicking and dragging",
638
- elem_id="selected_text_display"
639
  )
 
640
 
641
  # Overall Rating
642
  overall_rating = gr.Slider(
@@ -687,37 +811,14 @@ with gr.Blocks(css=css) as app:
687
  lines=3
688
  )
689
 
690
- # Text Selection Comments
691
- with gr.Accordion("💬 Text Selection & Comments", open=True):
692
- gr.Markdown("""
693
- **Instructions**:
694
- 1. Select any text from the AI summary above by clicking and dragging
695
- 2. Add your comment for the selected text
696
- 3. Click "Add Comment" to save it
697
- """)
698
-
699
- comment_input = gr.Textbox(
700
- label="Comment for Selected Text",
701
- placeholder="Enter your comment for the selected text above",
702
- lines=3
703
- )
704
-
705
- with gr.Row():
706
- add_comment_button = gr.Button("➕ Add Comment", variant="secondary")
707
- clear_comments_button = gr.Button("🗑️ Clear All Comments", variant="secondary")
708
-
709
- # Display all comments
710
- comments_display = gr.JSON(
711
- label="All Text Comments",
712
- value={},
713
- visible=True
714
- )
715
-
716
- # Hidden field to store comments for submission
717
  sentence_comments = gr.Textbox(
718
- label="Comments Data (for submission)",
719
- visible=False,
720
- value="{}"
 
721
  )
722
 
723
  # Submit evaluation button
@@ -740,171 +841,118 @@ with gr.Blocks(css=css) as app:
740
  label="Statistics"
741
  )
742
 
 
 
 
 
 
 
 
 
 
 
 
 
743
  export_file_output = gr.File(
744
  label="Download Patient Evaluation Data",
745
  visible=False
746
  )
747
 
748
  # Connect patient evaluation functionality
749
- def update_patient_eval_display(selected_title):
750
- """Update the evaluation display with selected patient data"""
751
- if not selected_title:
752
- empty_html = """
753
- <div id='ai-summary-content' style='
754
- border: 1px solid #ddd;
755
- padding: 15px;
756
- min-height: 200px;
757
- background: transparent;
758
- color: inherit;
759
- user-select: text;
760
- line-height: 1.6;
761
- font-family: inherit;
762
- border-radius: 6px;
763
- cursor: text;
764
- '>
765
- <p style='color: inherit; font-style: italic; opacity: 0.7;'>Select a patient to view AI summary...</p>
766
- <p style='color: inherit; font-size: 12px; margin-top: 10px; opacity: 0.5;'>💡 Tip: Click and drag to select text, then add comments below</p>
767
- </div>
768
- <style>
769
- ::selection {
770
- background-color: #ffff00 !important;
771
- color: #000 !important;
772
- }
773
- ::-moz-selection {
774
- background-color: #ffff00 !important;
775
- color: #000 !important;
776
- }
777
- </style>
778
- """
779
- return "No patient selected", empty_html, "Select a patient to preview", ""
780
-
781
- for option in options:
782
- if option["title"] == selected_title:
783
- # Format AI summary as HTML with proper styling
784
- ai_summary_text = option["note"].replace('\n', '<br>')
785
- ai_summary_html = f"""
786
- <div id='ai-summary-content' style='
787
- border: 1px solid #ddd;
788
- padding: 15px;
789
- min-height: 200px;
790
- background: transparent;
791
- color: inherit;
792
- user-select: text;
793
- line-height: 1.6;
794
- font-family: inherit;
795
- border-radius: 6px;
796
- cursor: text;
797
- '>
798
- {ai_summary_text}
799
- </div>
800
- <style>
801
- ::selection {{
802
- background-color: #ffff00 !important;
803
- color: #000 !important;
804
- }}
805
- ::-moz-selection {{
806
- background-color: #ffff00 !important;
807
- color: #000 !important;
808
- }}
809
- #ai-summary-content ::selection {{
810
- background-color: #ffff00 !important;
811
- color: #000 !important;
812
- }}
813
- #ai-summary-content ::-moz-selection {{
814
- background-color: #ffff00 !important;
815
- color: #000 !important;
816
- }}
817
- </style>
818
- <script>
819
- document.addEventListener('mouseup', function() {{
820
- const selection = window.getSelection();
821
- const selectedText = selection.toString().trim();
822
- if (selectedText && selectedText.length > 0) {{
823
- // Find and update the selected text display
824
- const textareas = document.querySelectorAll('textarea');
825
- for (let textarea of textareas) {{
826
- if (textarea.placeholder && textarea.placeholder.includes('Select text from the AI summary')) {{
827
- textarea.value = selectedText;
828
- textarea.dispatchEvent(new Event('input', {{ bubbles: true }}));
829
- break;
830
- }}
831
- }}
832
- }}
833
- }});
834
- </script>
835
- """
836
- return option["text"], ai_summary_html, option["text"][:200] + "...", ""
837
-
838
- return "Patient data not found", "AI summary not found", "Data not found", ""
839
 
840
  # Update evaluation display when patient selection changes
841
  eval_patient_radio.change(
842
- fn=update_patient_eval_display,
843
  inputs=[eval_patient_radio],
844
- outputs=[patient_input_display, ai_summary_html, eval_patient_preview, selected_text_display]
845
  )
846
-
847
- # Comment management functions
848
- def add_comment_to_selection(selected_text, comment, current_comments):
849
- """Add a comment for the selected text"""
850
- if not selected_text.strip() or not comment.strip():
851
- return current_comments, current_comments, "", f"Please select text and enter a comment"
852
-
853
- import json
854
- try:
855
- comments_dict = json.loads(current_comments) if current_comments else {}
856
- except:
857
- comments_dict = {}
858
-
859
- # Add the new comment
860
- comments_dict[selected_text.strip()] = comment.strip()
861
-
862
- updated_comments = json.dumps(comments_dict, indent=2)
863
- return comments_dict, updated_comments, "", f"✅ Comment added for: '{selected_text[:50]}...'"
864
-
865
- def clear_all_comments():
866
- """Clear all comments"""
867
- return {}, "{}"
868
-
869
- # Connect comment management buttons
870
- add_comment_button.click(
871
- fn=add_comment_to_selection,
872
- inputs=[selected_text_display, comment_input, sentence_comments],
873
- outputs=[comments_display, sentence_comments, comment_input, eval_patient_preview]
874
  )
875
 
876
- clear_comments_button.click(
877
- fn=clear_all_comments,
878
- outputs=[comments_display, sentence_comments]
879
- )
880
 
881
  # Handle patient evaluation submission
882
- def submit_patient_eval_wrapper(selected_title, overall_rating, medical_accuracy,
883
  clinical_relevance, completeness, clarity,
884
  feedback_text, expert_name_input, sentence_comments):
885
- if not selected_title:
886
- return "Please select a patient sample first.", "", 0, 0, 0, 0, 0, "", ""
887
-
888
- patient_id = selected_title.replace("Patient:", "")
889
- patient_input = ""
890
- ai_summary = ""
891
-
892
- for option in options:
893
- if option["title"] == selected_title:
894
- patient_input = option["text"]
895
- ai_summary = option["note"]
896
- break
 
 
 
 
 
 
897
 
898
- return submit_patient_evaluation(
899
- patient_id, patient_input, ai_summary, overall_rating,
 
900
  medical_accuracy, clinical_relevance, completeness, clarity,
901
  feedback_text, expert_name_input, sentence_comments
902
  )
 
 
 
 
 
 
 
903
 
904
  submit_eval_button.click(
905
  fn=submit_patient_eval_wrapper,
906
  inputs=[
907
  eval_patient_radio,
 
908
  overall_rating,
909
  medical_accuracy,
910
  clinical_relevance,
@@ -923,7 +971,8 @@ with gr.Blocks(css=css) as app:
923
  completeness,
924
  clarity,
925
  sentence_comments,
926
- expert_name_input
 
927
  ]
928
  )
929
 
@@ -938,7 +987,77 @@ with gr.Blocks(css=css) as app:
938
  outputs=[export_file_output, evaluation_stats_display]
939
  )
940
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
941
 
942
 
943
  app.queue()
944
- app.launch(share=True, max_threads=10)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8
  import time
9
  import threading
10
  import json
11
+ import re
12
  import csv
13
  from datetime import datetime, timedelta
14
+ from google_drive_sync import sync_to_google_drive, get_drive_setup_instructions, start_google_login, check_user_authentication
15
+ import shutil
16
+ import zipfile
17
 
18
  session = requests.Session()
19
 
 
24
  timeout = 60
25
  concurrency_count=10
26
 
27
+ def start_backend_server():
28
+ """Start the Flask backend (src.server) in a background thread for Spaces."""
29
+ try:
30
+ from src.server import create_app, configure_routes
31
+
32
+ class Args:
33
+ counselor_config_path = './src/configs/counselor_config.yaml'
34
+ store_dir = './user_data'
35
+
36
+ app = create_app()
37
+ configure_routes(app, Args())
38
+
39
+ def run():
40
+ app.run(port=8080, host='0.0.0.0', debug=False)
41
+
42
+ threading.Thread(target=run, daemon=True).start()
43
+ print("Backend server started on http://localhost:8080")
44
+ except Exception as e:
45
+ print(f"Failed to start backend server: {e}")
46
+
47
  async def initialization(api_key, username):
48
  url = f"{base_url}/api/initialization"
49
  headers = {'Content-Type': 'application/json'}
 
281
  clarity, feedback, expert_name, sentence_comments):
282
  """Process and save the patient evaluation"""
283
  if not expert_name.strip():
284
+ return "Please enter your name before submitting evaluation.", "", 0, 0, 0, 0, 0, "", ""
285
 
286
  if overall_rating == 0:
287
+ return "Please provide an overall rating before submitting.", "", 0, 0, 0, 0, 0, "", ""
288
 
289
  categories = {
290
  'medical_accuracy': medical_accuracy,
 
375
  except Exception as e:
376
  return f"Error reading patient evaluation data: {str(e)}"
377
 
378
+ def create_backup_zip():
379
+ """Create a backup zip file of all evaluation data"""
380
+ try:
381
+ timestamp = datetime.now().strftime("%Y%m%d_%H%M%S")
382
+ backup_filename = f"patient_evaluations_backup_{timestamp}.zip"
383
+
384
+ with zipfile.ZipFile(backup_filename, 'w') as backup_zip:
385
+ # Add CSV file if it exists
386
+ csv_file = "patient_evaluations/patient_evaluations_master.csv"
387
+ if os.path.exists(csv_file):
388
+ backup_zip.write(csv_file, f"patient_evaluations_master_{timestamp}.csv")
389
+
390
+ # Add JSON files
391
+ eval_dir = "patient_evaluations"
392
+ if os.path.exists(eval_dir):
393
+ for filename in os.listdir(eval_dir):
394
+ if filename.endswith('.json'):
395
+ file_path = os.path.join(eval_dir, filename)
396
+ backup_zip.write(file_path, f"json_files/{filename}")
397
+
398
+ return backup_filename, f"✅ Backup created successfully: {backup_filename}"
399
+ except Exception as e:
400
+ return None, f"❌ Error creating backup: {str(e)}"
401
+
402
  def update_methods(chapter):
403
  return gr.update(choices=interview_protocols[chapter], value=interview_protocols[chapter][0])
404
 
 
434
  font-size: 12px !important;
435
  width: auto !important;
436
  }
437
+
438
+ /* Force scrollable areas for long text */
439
+ #eval_patient_preview textarea,
440
+ #patient_input_display textarea {
441
+ max-height: 420px !important;
442
+ overflow-y: auto !important;
443
+ }
444
+
445
+ #ai_summary_markdown {
446
+ max-height: 480px !important;
447
+ overflow-y: auto !important;
448
+ }
449
  """
450
 
451
  with gr.Blocks(css=css) as app:
452
+ # In Spaces, start backend inside the same process
453
+ start_backend_server()
454
  chatbot_type_state = gr.State('enhanced')
455
  api_key_state = gr.State()
456
  selected_title = gr.State()
 
468
  data.append(json.loads(line))
469
  return data
470
 
471
+ # Load per admission data (optional; skip if missing in Space)
472
+ # Prefer env var ADMISSION_JSONL; otherwise resolve relative to this file
473
+ script_dir_for_adm = os.path.dirname(os.path.abspath(__file__))
474
+ default_adm_path = os.path.join(script_dir_for_adm, "per_admission_summaries", "llama-3.2-3b_per_admission.jsonl")
475
+ jsonl_path = os.environ.get("ADMISSION_JSONL", default_adm_path)
476
+ admission_data = load_jsonl(jsonl_path) if os.path.exists(jsonl_path) else []
477
+
478
+ # Group admissions by patient_id
479
+ patient_admissions = {}
480
+ for admission in admission_data:
481
+ patient_id = admission['patient_id']
482
+ if patient_id not in patient_admissions:
483
+ patient_admissions[patient_id] = []
484
+ patient_admissions[patient_id].append(admission)
485
+
486
+ # Create options with admission tabs for each patient
487
  options = []
488
+ for patient_id, admissions in patient_admissions.items():
489
+ for i, admission in enumerate(admissions):
490
+ admission_id = admission['hadm_id']
491
+ admit_time = admission['admittime']
492
+ summary = admission['summary']
493
+ input_text = admission['input_text']
494
+
495
+ # Create a unique title for each admission
496
+ title = f"Patient {patient_id} - Admission {i+1} (ID: {admission_id})"
497
+
498
+ options.append({
499
+ 'title': title,
500
+ 'text': input_text, # Use the actual input text that was given to LLM
501
+ 'note': summary, # AI generated summary
502
+ 'patient_id': patient_id,
503
+ 'admission_id': admission_id,
504
+ 'admission_index': i+1,
505
+ 'admit_time': admit_time,
506
+ 'raw_data': admission.get('raw', {})
507
+ })
508
+
509
+ # ----------------------
510
+ # Load new summaries data (grouped by patient -> admissions)
511
+ # Directory: /Users/liuzijie/Desktop/chatbot-mimic-notes/summaries
512
+ # Filenames: subject_{patient}_hadm_{hadm}_model_input.txt and subject_{patient}_hadm_{hadm}_summary.txt
513
+ # ----------------------
514
+ # Prefer env var, then path relative to this file (repo root)
515
+ script_dir = os.path.dirname(os.path.abspath(__file__))
516
+ default_summaries_dir = os.path.join(script_dir, "summaries")
517
+ summaries_dir = os.environ.get("SUMMARIES_DIR", default_summaries_dir)
518
+
519
+ def load_text_file(path):
520
+ try:
521
+ with open(path, 'r', encoding='utf-8') as f:
522
+ return f.read()
523
+ except Exception:
524
+ return ""
525
+
526
+ date_regex = re.compile(r"(\d{4}-\d{2}-\d{2}(?:[ T]\d{2}:\d{2}(?::\d{2})?)?)")
527
+
528
+ def extract_timestamp_from_text(text):
529
+ if not text:
530
+ return ""
531
+ m = date_regex.search(text)
532
+ return m.group(1) if m else ""
533
+
534
+ eval_data_by_patient = {}
535
+ if os.path.exists(summaries_dir):
536
+ files = os.listdir(summaries_dir)
537
+ pattern = re.compile(r"^subject_(\d+)_hadm_(\d+)_(model_input|summary)\.txt$")
538
+ for fname in files:
539
+ match = pattern.match(fname)
540
+ if not match:
541
+ continue
542
+ patient_id, hadm_id, kind = match.groups()
543
+ patient_dict = eval_data_by_patient.setdefault(patient_id, {})
544
+ record = patient_dict.setdefault(hadm_id, {
545
+ 'patient_id': patient_id,
546
+ 'admission_id': hadm_id,
547
+ 'input_text': "",
548
+ 'summary': "",
549
+ 'timestamp': ""
550
+ })
551
+ full_path = os.path.join(summaries_dir, fname)
552
+ if kind == 'model_input':
553
+ record['input_text'] = load_text_file(full_path)
554
+ # prefer embedded timestamp if present
555
+ if not record.get('timestamp'):
556
+ embedded = extract_timestamp_from_text(record['input_text'])
557
+ if embedded:
558
+ record['timestamp'] = embedded
559
+ record['_input_mtime'] = os.path.getmtime(full_path)
560
+ elif kind == 'summary':
561
+ record['summary'] = load_text_file(full_path)
562
+ if not record.get('timestamp'):
563
+ embedded = extract_timestamp_from_text(record['summary'])
564
+ if embedded:
565
+ record['timestamp'] = embedded
566
+ record['_summary_mtime'] = os.path.getmtime(full_path)
567
+
568
+ # finalize timestamps: do NOT fallback to mtime; leave as None if not found in content
569
+ for p_id, hadm_map in eval_data_by_patient.items():
570
+ for h_id, rec in hadm_map.items():
571
+ if not rec.get('timestamp'):
572
+ rec['timestamp'] = None
573
+ # cleanup internal fields
574
+ if '_input_mtime' in rec:
575
+ del rec['_input_mtime']
576
+ if '_summary_mtime' in rec:
577
+ del rec['_summary_mtime']
578
+
579
+ # Precompute patient id list for UI
580
+ patient_ids_list = sorted(list(eval_data_by_patient.keys()))
581
 
582
  with gr.Tabs():
583
  with gr.TabItem("🏥 Medical Chat"):
 
692
 
693
  with gr.TabItem("🔬 Expert Evaluation"):
694
  with gr.Row():
695
+ with gr.Column(scale=1):
696
  # Patient Sample Selection for Evaluation
697
  with gr.Box():
698
  gr.Markdown("## 📋 Select Patient Sample")
699
+ gr.Markdown("💡 **Tip:** Same patients may have multiple admissions - each is a separate evaluation case")
700
+
701
  option_titles = [option["title"] for option in options]
702
 
703
+ # Replace single radio with two-stage selection: Patient -> Admission
704
+ patient_ids = patient_ids_list
705
  eval_patient_radio = gr.Radio(
706
+ choices=patient_ids,
707
+ label="Choose Patient",
708
+ interactive=True,
709
+ value=None
710
+ )
711
+ eval_admission_radio = gr.Radio(
712
+ choices=[],
713
+ label="Choose Admission",
714
  interactive=True,
715
  value=None
716
  )
 
718
  # Display selected patient data
719
  with gr.Accordion("📄 Patient Data Preview", open=False):
720
  eval_patient_preview = gr.Textbox(
721
+ label="Original Patient Data (Input to LLM)",
722
  interactive=False,
723
+ lines=12,
724
+ value="Select a patient to preview data",
725
+ elem_id="eval_patient_preview"
726
  )
727
 
728
+ with gr.Column(scale=4):
729
  # Patient Sample Evaluation Module
730
  with gr.Box():
731
  gr.Markdown("## 🏥 Patient Sample Evaluation Module")
 
748
  patient_input_display = gr.Textbox(
749
  label="Original Patient Data",
750
  interactive=False,
751
+ lines=12,
752
+ value="Select a patient sample to view data",
753
+ elem_id="patient_input_display"
754
  )
755
 
756
+ # AI Summary Display (render markdown)
757
+ with gr.Accordion("🤖 AI Generated Summary", open=True):
758
+ ai_summary_display = gr.Markdown(
759
+ value="Select a patient to view AI summary...",
760
+ label="AI Generated Summary",
761
+ elem_id="ai_summary_markdown"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
762
  )
763
+ timestamp_display = gr.Markdown(value="", label="Timestamp")
764
 
765
  # Overall Rating
766
  overall_rating = gr.Slider(
 
811
  lines=3
812
  )
813
 
814
+ # Simple Comments Input
815
+ with gr.Accordion("💬 Sentence-by-Sentence Comments", open=True):
816
+ gr.Markdown("**Instructions:** Add specific comments about the AI summary. Use format like:\n- Point 1: This is accurate\n- Point 2: Missing important detail")
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
817
  sentence_comments = gr.Textbox(
818
+ label="Detailed Comments",
819
+ placeholder="Enter your specific comments about different aspects of the AI summary...",
820
+ lines=4,
821
+ value=""
822
  )
823
 
824
  # Submit evaluation button
 
841
  label="Statistics"
842
  )
843
 
844
+ # Google Drive Integration
845
+ with gr.Accordion("☁️ Save to Your Google Drive", open=False):
846
+ drive_setup_info = gr.Markdown(get_drive_setup_instructions())
847
+
848
+ with gr.Row():
849
+ login_drive_button = gr.Button("🔐 Login to Google Drive", variant="secondary")
850
+ sync_drive_button = gr.Button("🔗 Sync to Google Drive", variant="primary")
851
+
852
+ # Status displays
853
+ drive_auth_status = gr.Markdown("", visible=False)
854
+ drive_sync_status = gr.Markdown("", visible=False)
855
+
856
  export_file_output = gr.File(
857
  label="Download Patient Evaluation Data",
858
  visible=False
859
  )
860
 
861
  # Connect patient evaluation functionality
862
+ def update_admissions_for_patient(patient_id):
863
+ if not patient_id:
864
+ return gr.update(choices=[], value=None)
865
+ hadms = []
866
+ if patient_id in eval_data_by_patient:
867
+ # Include timestamp (or None)
868
+ for hadm_id, rec in sorted(eval_data_by_patient[patient_id].items()):
869
+ ts = rec.get('timestamp') if rec.get('timestamp') else 'None'
870
+ label = f"Admission {hadm_id} — {ts}"
871
+ hadms.append(label)
872
+ return gr.update(choices=hadms, value=None)
873
+
874
+ def parse_admission_label(label):
875
+ # Label format: "Admission {hadm} — {timestamp}" -> extract hadm
876
+ if not label:
877
+ return None
878
+ # robust parse: split on ' ' then take the first part
879
+ first = label.split(' ')[0]
880
+ parts = first.split(' ')
881
+ if len(parts) >= 2 and parts[0] == 'Admission':
882
+ return parts[1]
883
+ return None
884
+
885
+ def update_patient_eval_display(patient_id, admission_label):
886
+ if not patient_id or not admission_label:
887
+ return "No patient selected", "Select a patient to view AI summary...", "Select a patient to preview", ""
888
+ hadm_id = parse_admission_label(admission_label)
889
+ if not hadm_id:
890
+ return "No patient selected", "Select a patient to view AI summary...", "Select a patient to preview", ""
891
+ # Normalize IDs to strings to avoid type mismatch
892
+ pid = str(patient_id)
893
+ hid = str(hadm_id)
894
+ rec = eval_data_by_patient.get(pid, {}).get(hid)
895
+ if not rec:
896
+ return "Patient data not found", "AI summary not found", "Data not found", ""
897
+ ts = rec.get('timestamp') if rec.get('timestamp') else 'None'
898
+ return rec['input_text'], rec['summary'], rec['input_text'], f"Timestamp: {ts}"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
899
 
900
  # Update evaluation display when patient selection changes
901
  eval_patient_radio.change(
902
+ fn=update_admissions_for_patient,
903
  inputs=[eval_patient_radio],
904
+ outputs=[eval_admission_radio]
905
  )
906
+
907
+ eval_admission_radio.change(
908
+ fn=update_patient_eval_display,
909
+ inputs=[eval_patient_radio, eval_admission_radio],
910
+ outputs=[patient_input_display, ai_summary_display, eval_patient_preview, timestamp_display]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
911
  )
912
 
 
 
 
 
913
 
914
  # Handle patient evaluation submission
915
+ def submit_patient_eval_wrapper(selected_patient_id, selected_admission_label, overall_rating, medical_accuracy,
916
  clinical_relevance, completeness, clarity,
917
  feedback_text, expert_name_input, sentence_comments):
918
+ if not selected_patient_id or not selected_admission_label:
919
+ stats = get_patient_evaluation_stats()
920
+ return "Please select a patient and admission first.", "", 0, 0, 0, 0, 0, "", "", stats
921
+
922
+ hadm_id = parse_admission_label(selected_admission_label)
923
+ if not hadm_id:
924
+ stats = get_patient_evaluation_stats()
925
+ return "Invalid admission selection.", "", 0, 0, 0, 0, 0, "", "", stats
926
+
927
+ rec = eval_data_by_patient.get(selected_patient_id, {}).get(hadm_id)
928
+ if not rec:
929
+ stats = get_patient_evaluation_stats()
930
+ return "Selected record not found.", "", 0, 0, 0, 0, 0, "", "", stats
931
+
932
+ patient_id = rec["patient_id"]
933
+ admission_id = rec["admission_id"]
934
+ patient_input = rec["input_text"] # Input text to LLM
935
+ ai_summary = rec["summary"] # AI generated summary
936
 
937
+ # Submit the evaluation with admission info
938
+ result = submit_patient_evaluation(
939
+ f"{patient_id}_adm_{admission_id}", patient_input, ai_summary, overall_rating,
940
  medical_accuracy, clinical_relevance, completeness, clarity,
941
  feedback_text, expert_name_input, sentence_comments
942
  )
943
+
944
+ # Get updated statistics
945
+ stats = get_patient_evaluation_stats()
946
+
947
+ # Return the evaluation result plus updated statistics
948
+ # result returns: (status_message, feedback_text, overall_rating, medical_accuracy, clinical_relevance, completeness, clarity, sentence_comments, expert_name)
949
+ return result[0], result[1], result[2], result[3], result[4], result[5], result[6], result[7], result[8], stats
950
 
951
  submit_eval_button.click(
952
  fn=submit_patient_eval_wrapper,
953
  inputs=[
954
  eval_patient_radio,
955
+ eval_admission_radio,
956
  overall_rating,
957
  medical_accuracy,
958
  clinical_relevance,
 
971
  completeness,
972
  clarity,
973
  sentence_comments,
974
+ expert_name_input,
975
+ evaluation_stats_display
976
  ]
977
  )
978
 
 
987
  outputs=[export_file_output, evaluation_stats_display]
988
  )
989
 
990
+ # Google Drive authentication function
991
+ def handle_google_login():
992
+ """Handle Google Drive user authentication"""
993
+ try:
994
+ success, message = start_google_login()
995
+ if success:
996
+ return gr.update(value=f"✅ {message}", visible=True)
997
+ else:
998
+ return gr.update(value=f"❌ {message}", visible=True)
999
+ except Exception as e:
1000
+ return gr.update(value=f"❌ Login Error: {str(e)}", visible=True)
1001
+
1002
+ # Google Drive sync function
1003
+ def handle_drive_sync():
1004
+ """Handle Google Drive synchronization"""
1005
+ try:
1006
+ success, message = sync_to_google_drive()
1007
+ if success:
1008
+ return gr.update(value=f"✅ {message}", visible=True), get_patient_evaluation_stats()
1009
+ else:
1010
+ return gr.update(value=f"❌ {message}", visible=True), get_patient_evaluation_stats()
1011
+ except Exception as e:
1012
+ return gr.update(value=f"❌ Error: {str(e)}", visible=True), get_patient_evaluation_stats()
1013
+
1014
+ # Check authentication status on startup
1015
+ def check_auth_status():
1016
+ """Check if user is already authenticated"""
1017
+ try:
1018
+ success, message = check_user_authentication()
1019
+ if success:
1020
+ return gr.update(value=f"✅ {message}", visible=True)
1021
+ else:
1022
+ return gr.update(value="ℹ️ Click 'Login to Google Drive' to connect your account", visible=True)
1023
+ except Exception as e:
1024
+ return gr.update(value="", visible=False)
1025
+
1026
+ # Event handlers
1027
+ login_drive_button.click(
1028
+ fn=handle_google_login,
1029
+ outputs=[drive_auth_status]
1030
+ )
1031
+
1032
+ sync_drive_button.click(
1033
+ fn=handle_drive_sync,
1034
+ outputs=[drive_sync_status, evaluation_stats_display]
1035
+ )
1036
+
1037
+ # Check auth status when page loads
1038
+ app.load(
1039
+ fn=check_auth_status,
1040
+ outputs=[drive_auth_status]
1041
+ )
1042
+
1043
 
1044
 
1045
  app.queue()
1046
+
1047
+ # Check if we want to deploy to Hugging Face Spaces for permanent hosting
1048
+ import sys
1049
+ if "--deploy" in sys.argv:
1050
+ print("🚀 To deploy permanently to Hugging Face Spaces:")
1051
+ print("1. Install: pip install huggingface_hub[cli]")
1052
+ print("2. Login: huggingface-cli login")
1053
+ print("3. Deploy: gradio deploy")
1054
+ print("4. This will give you a permanent https://yourname-appname.hf.space URL")
1055
+
1056
+ # For now, launch with share link (72 hour expiry)
1057
+ app.launch(
1058
+ share=True,
1059
+ max_threads=10,
1060
+ server_name="0.0.0.0", # Allow external connections
1061
+ server_port=7860,
1062
+ show_error=True
1063
+ )
deploy_to_huggingface.py ADDED
@@ -0,0 +1,143 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env python3
2
+ """
3
+ Script to deploy the Patient Evaluation App to Hugging Face Spaces for permanent hosting.
4
+ This will give you a permanent URL that doesn't expire.
5
+ """
6
+
7
+ import os
8
+ import subprocess
9
+ import sys
10
+
11
+ def check_requirements():
12
+ """Check if required packages are installed"""
13
+ try:
14
+ import gradio
15
+ print("✅ Gradio is installed")
16
+ except ImportError:
17
+ print("❌ Gradio not found. Please install with: pip install gradio")
18
+ return False
19
+
20
+ try:
21
+ subprocess.run(["huggingface-cli", "--help"], capture_output=True, check=True)
22
+ print("✅ Hugging Face CLI is available")
23
+ except (subprocess.CalledProcessError, FileNotFoundError):
24
+ print("❌ Hugging Face CLI not found. Please install with: pip install huggingface_hub[cli]")
25
+ return False
26
+
27
+ return True
28
+
29
+ def check_login():
30
+ """Check if user is logged into Hugging Face"""
31
+ try:
32
+ result = subprocess.run(["huggingface-cli", "whoami"], capture_output=True, text=True)
33
+ if result.returncode == 0:
34
+ print(f"✅ Logged in as: {result.stdout.strip()}")
35
+ return True
36
+ else:
37
+ print("❌ Not logged into Hugging Face")
38
+ return False
39
+ except Exception as e:
40
+ print(f"❌ Error checking login status: {e}")
41
+ return False
42
+
43
+ def create_space_config():
44
+ """Create the space configuration file"""
45
+ config_content = """---
46
+ title: Patient Evaluation System
47
+ emoji: 🏥
48
+ colorFrom: blue
49
+ colorTo: green
50
+ sdk: gradio
51
+ sdk_version: 3.50.2
52
+ app_file: chatgpt.py
53
+ pinned: false
54
+ license: mit
55
+ ---
56
+
57
+ # Patient Evaluation System
58
+
59
+ A comprehensive system for medical experts to evaluate AI-generated patient summaries.
60
+
61
+ ## Features
62
+ - Multi-admission patient data evaluation
63
+ - Simplified comment system
64
+ - Google Drive integration for data backup
65
+ - Real-time statistics and analytics
66
+ - CSV/JSON data export
67
+
68
+ ## Usage
69
+ 1. Select a patient sample from the evaluation tab
70
+ 2. Review the AI-generated summary against the original data
71
+ 3. Provide ratings and feedback
72
+ 4. Submit evaluation for analysis
73
+
74
+ ## Setup
75
+ The application will guide you through any necessary setup steps.
76
+ """
77
+
78
+ with open("README.md", "w") as f:
79
+ f.write(config_content)
80
+ print("✅ Created README.md for Hugging Face Space")
81
+
82
+ def deploy():
83
+ """Deploy to Hugging Face Spaces"""
84
+ if not check_requirements():
85
+ return False
86
+
87
+ if not check_login():
88
+ print("\n🔑 Please login to Hugging Face first:")
89
+ print("Run: huggingface-cli login")
90
+ print("Then run this script again.")
91
+ return False
92
+
93
+ print("\n🚀 Starting deployment to Hugging Face Spaces...")
94
+
95
+ # Create space config
96
+ create_space_config()
97
+
98
+ try:
99
+ # Deploy using gradio
100
+ print("📤 Deploying application...")
101
+ result = subprocess.run(["gradio", "deploy", "--hf-token"],
102
+ input="y\n", text=True, capture_output=True)
103
+
104
+ if result.returncode == 0:
105
+ print("✅ Deployment successful!")
106
+ print("\n🌐 Your permanent URL will be:")
107
+ print("https://your-username-patient-evaluation.hf.space")
108
+ print("\n💡 Tips:")
109
+ print("- The URL will be permanent and won't expire")
110
+ print("- You can update the app by running this script again")
111
+ print("- Your Google Drive data will be preserved")
112
+ return True
113
+ else:
114
+ print(f"❌ Deployment failed: {result.stderr}")
115
+ return False
116
+
117
+ except Exception as e:
118
+ print(f"❌ Error during deployment: {e}")
119
+ return False
120
+
121
+ def main():
122
+ print("🏥 Patient Evaluation System - Hugging Face Deployment")
123
+ print("=" * 60)
124
+
125
+ print("\n📋 This script will deploy your app to Hugging Face Spaces")
126
+ print("Benefits:")
127
+ print("- ✅ Permanent URL (no 72-hour expiry)")
128
+ print("- ✅ Free hosting")
129
+ print("- ✅ HTTPS security")
130
+ print("- ✅ Easy updates")
131
+
132
+ answer = input("\n❓ Do you want to proceed? (y/n): ").lower().strip()
133
+
134
+ if answer in ['y', 'yes']:
135
+ if deploy():
136
+ print("\n🎉 Deployment completed successfully!")
137
+ else:
138
+ print("\n😞 Deployment failed. Please check the errors above.")
139
+ else:
140
+ print("👋 Deployment cancelled.")
141
+
142
+ if __name__ == "__main__":
143
+ main()
evaluation_module_readme.md CHANGED
@@ -1,199 +1,86 @@
1
  # Patient Sample Evaluation Module 🏥
2
 
3
- ## 概述 (Overview)
4
-
5
- 为您的医疗AI界面添加了一个专业的患者样本评估模块,允许医学专家对AI生成的患者总结进行评分和反馈,支持按句评论功能。
6
-
7
- ## 功能特性 (Features)
8
-
9
- ### 1. 患者样本评估系统
10
- - **整体质量评分**: 1-5分制度评估AI总结质量
11
- - **医学准确性** (Medical Accuracy): 评估医学信息的准确性
12
- - **临床相关性** (Clinical Relevance): 评估总结的临床价值
13
- - **完整性** (Completeness): 评估总结的信息完整度
14
- - **清晰度与组织** (Clarity & Organization): 评估表达的清晰程度和逻辑结构
15
-
16
- ### 2. 按句评论系统
17
- - 针对AI总结的每个句子提供具体评论
18
- - 支持句子编号格式:`句号: 评论内容`
19
- - 追踪具体问题和改进建议
20
- - 详细的逐句分析能力
21
-
22
- ### 3. 患者数据管理
23
- - 基于真实患者样本进行评估
24
- - 显示原始患者数据和AI生成总结
25
- - 自动保存为JSONCSV格式
26
- - 患者ID和评估数据关联
27
-
28
- ## 使用方法 (Usage)
29
-
30
- ### 对于医学专家 (For Medical Experts)
31
-
32
- 1. **选择患者样本**
33
- - 从患者样本列表中选择要评估的病例
34
- - 系统会自动显示原始患者数据和AI生成的总结
35
-
36
- 2. **进行评估**
37
- - 输入您的姓名
38
- - 对比原始数据和AI总结
39
- - 使用滑块进行多维度评分 (1-5)
40
- - 提供整体反馈意见
41
-
42
- 3. **按句评论** (可选)
43
- - "Sentence-by-Sentence Comments"部分
44
- - 对特定句子提供详细评论
45
- - 格式:`1: 第一句的评论`
46
-
47
- 4. **提交评估**
48
- - 点击"Submit Patient Evaluation"按钮
49
- - 系统会确认保存成功并重置表单
50
-
51
- ### 对于管理员 (For Administrators)
52
-
53
- 1. **查看统计**
54
- - 点击"Refresh Statistics"查看患者评估数据
55
- - 包括平均评分、专家数量、患者数量、按句评论数等
56
-
57
- 2. **导出数据**
58
- - 点击"Export Data"下载CSV文件
59
- - 用于进一步分析和研究
60
-
61
- ## 数据存储结构 (Data Structure)
62
-
63
- ### JSON格式 (Individual Patient Evaluations)
64
- ```json
65
- {
66
- "timestamp": "2024-01-01T12:00:00",
67
- "patient_id": "12345",
68
- "expert_name": "Dr. Smith",
69
- "patient_input": "原始患者数据...",
70
- "ai_summary": "AI生成的患者总结...",
71
- "overall_rating": 4,
72
- "feedback": "整体反馈...",
73
- "categories": {
74
- "medical_accuracy": 5,
75
- "clinical_relevance": 4,
76
- "completeness": 4,
77
- "clarity": 5
78
- },
79
- "sentence_comments": [
80
- {
81
- "sentence_number": "1",
82
- "comment": "第一句评论"
83
- },
84
- {
85
- "sentence_number": "3",
86
- "comment": "第三句评论"
87
- }
88
- ]
89
- }
90
- ```
91
-
92
- ### CSV格式 (Master File)
93
- - timestamp: 时间戳
94
- - patient_id: 患者ID
95
- - expert_name: 专家姓名
96
- - overall_rating: 整体评分
97
- - medical_accuracy: 医学准确性
98
- - clinical_relevance: 临床相关性
99
- - completeness: 完整性
100
- - clarity: 清晰度
101
- - feedback: 详细反馈
102
- - sentence_comments_count: 按句评论数量
103
-
104
- ## 文件结构 (File Structure)
105
-
106
- ```
107
- /patient_evaluations/
108
- ├── patient_eval_12345_YYYY-MM-DDTHH-mm-ss.json # 单个患者评估记录
109
- ├── patient_eval_67890_YYYY-MM-DDTHH-mm-ss.json
110
- ├── ...
111
- └── patient_evaluations_master.csv # 汇总CSV文件
112
- ```
113
-
114
- ## 技术要求 (Requirements)
115
-
116
- ### 必需依赖
117
- - gradio
118
- - json (内置)
119
- - csv (内置)
120
- - datetime (内置)
121
- - os (内置)
122
-
123
- ### 可选依赖
124
- - pandas (用于高级统计分析)
125
-
126
- ## 安装pandas (可选)
127
- ```bash
128
- pip install pandas
129
- ```
130
-
131
- ## 评估标准建议 (Evaluation Guidelines)
132
-
133
- ### 评分标准 (Rating Scale)
134
- - **5分 (Excellent)**: 完全准确,高度相关,表达清晰
135
- - **4分 (Good)**: 基本准确,相关性好,表达清楚
136
- - **3分 (Fair)**: 可接受,有些问题但不严重
137
- - **2分 (Poor)**: 明显问题,需要改进
138
- - **1分 (Very Poor)**: 严重错误,不可接受
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
- ## 故障排除 (Troubleshooting)
173
-
174
- ### 常见问题
175
- 1. **评估未保存**: 检查是否选择了患者样本、填写了专家姓名和评分
176
- 2. **统计不显示**: 确保有患者评估数据存在
177
- 3. **导出失败**: 检查文件权限和磁盘空间
178
- 4. **患者数据未显示**: 确保选择了正确的患者样��
179
-
180
- ### 数据恢复
181
- 所有患者评估数据都保存在`/patient_evaluations/`目录下,可以手动备份或恢复。
182
-
183
- ## 更新日志 (Changelog)
184
-
185
- ### v2.0 (Current)
186
- - 患者样本评估功能
187
- - 按句评论系统
188
- - 多维度评分系统(针对患者总结)
189
- - 患者数据管理
190
- - 评估统计分析面板
191
-
192
- ### v1.0 (Previous)
193
- - 基础对话评估功能
194
- - 多维度评分系统
195
- - 数据导出功能
196
-
197
- ---
198
-
199
- **注意**: 此患者评估模块专为医学专家设计,用于评估AI生成的患者总结质量。所有评估数据应严格按照医疗数据隐私法规处理。请确保患者数据的匿名化和隐私保护。
 
1
  # Patient Sample Evaluation Module 🏥
2
 
3
+ ## Overview
4
+
5
+ A professional patient sample evaluation module has been added to your medical AI interface, allowing medical experts to rate and provide feedback on AI-generated patient summaries, with support for sentence-level commenting.
6
+
7
+ ## Features
8
+
9
+ ### 1. Patient Sample Evaluation System
10
+ - **Overall Quality Rating**: 1-5 scale evaluation of AI summary quality
11
+ - **Medical Accuracy**: Evaluate accuracy of medical information
12
+ - **Clinical Relevance**: Assess clinical value of the summary
13
+ - **Completeness**: Evaluate information completeness of the summary
14
+ - **Clarity & Organization**: Assess clarity of expression and logical structure
15
+
16
+ ### 2. Sentence-level Comment System
17
+ - Provide specific comments for each sentence of AI summary
18
+ - Support sentence numbering format: `Sentence number: Comment content`
19
+ - Track specific issues and improvement suggestions
20
+ - Detailed sentence-by-sentence analysis capability
21
+
22
+ ### 3. Patient Data Management
23
+ - Evaluation based on real patient samples
24
+ - Display original patient data and AI-generated summaries
25
+ - Automatically save in JSON and CSV formats
26
+ - Link patient ID with evaluation data
27
+
28
+ ## Usage
29
+
30
+ ### For Medical Experts
31
+
32
+ 1. **Select Patient Sample**
33
+ - Choose a case to evaluate from the patient sample list
34
+ - System will automatically display original patient data and AI-generated summary
35
+
36
+ 2. **Conduct Evaluation**
37
+ - Enter your name
38
+ - Compare original data with AI summary
39
+ - Use sliders for multi-dimensional rating (1-5 scale)
40
+ - Provide overall feedback
41
+
42
+ 3. **Sentence-level Comments** (Optional)
43
+ - In the "Sentence-by-Sentence Comments" section
44
+ - Provide detailed comments for specific sentences
45
+ - Format: `1: Comment for first sentence`
46
+
47
+ 4. **Submit Evaluation**
48
+ - Click "Submit Patient Evaluation" button
49
+ - System will confirm successful save and reset form
50
+
51
+ ### For Administrators
52
+
53
+ 1. **View Statistics**
54
+ - Click "Refresh Statistics" to view patient evaluation data
55
+ - Includes average ratings, expert count, patient count, sentence comment count, etc.
56
+
57
+ 2. **Export Data**
58
+ - Click "Export Data" to download CSV file
59
+ - For further analysis and research
60
+
61
+ ## Data Storage Structure
62
+
63
+ Evaluation data is stored in two formats:
64
+
65
+ 1. **JSON files** (detailed data)
66
+ - Individual evaluation files with timestamp
67
+ - Complete evaluation information including ratings and comments
68
+
69
+ 2. **CSV file** (summary data)
70
+ - Master file for all evaluations
71
+ - Easy to import into analysis tools
72
+
73
+ ## Multi-Admission Support
74
+
75
+ - Same patients may have multiple hospital admissions
76
+ - Each admission is treated as a separate evaluation case
77
+ - Clear labeling: "Patient [ID] - Admission [Number] (ID: [Admission ID])"
78
+
79
+ ## Google Drive Integration
80
+
81
+ - Automatic backup of all evaluation data to cloud
82
+ - Secure access with your Google account
83
+ - Version control with timestamps
84
+ - Easy sharing and collaboration
85
+
86
+ This module provides comprehensive evaluation capabilities for AI-generated medical summaries while maintaining data integrity and providing valuable feedback for system improvement.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
google_drive_sync.py ADDED
@@ -0,0 +1,262 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import json
3
+ import pickle
4
+ from datetime import datetime
5
+
6
+ from google.auth.transport.requests import Request
7
+ from google.oauth2.credentials import Credentials
8
+ from google_auth_oauthlib.flow import InstalledAppFlow
9
+ from googleapiclient.discovery import build
10
+ from googleapiclient.http import MediaFileUpload
11
+
12
+ # Google Drive API scopes
13
+ SCOPES = ['https://www.googleapis.com/auth/drive.file']
14
+
15
+ # Real OAuth 2.0 configuration - Public client credentials for this app
16
+ # These are safe to include in public code (they're meant to be public)
17
+ CLIENT_CONFIG = {
18
+ "installed": {
19
+ "client_id": "764086051850-6qr4p6gpi6hn506pt8ejuq83di341hur.apps.googleusercontent.com",
20
+ "project_id": "patient-eval-app-439620",
21
+ "auth_uri": "https://accounts.google.com/o/oauth2/auth",
22
+ "token_uri": "https://oauth2.googleapis.com/token",
23
+ "auth_provider_x509_cert_url": "https://www.googleapis.com/oauth2/v1/certs",
24
+ "client_secret": "d-FL95Q19q7MQmFpd7hPD0Ty",
25
+ "redirect_uris": ["http://localhost"]
26
+ }
27
+ }
28
+
29
+ class GoogleDriveSync:
30
+ def __init__(self, user_id="default"):
31
+ self.user_id = user_id
32
+ self.token_file = f'user_tokens/{user_id}_token.pickle'
33
+ self.service = None
34
+ self.folder_id = None
35
+
36
+ # Ensure user tokens directory exists
37
+ os.makedirs('user_tokens', exist_ok=True)
38
+
39
+ def start_oauth_flow(self):
40
+ """Start OAuth flow for user authentication"""
41
+ try:
42
+ # Use Google's Flow from the client config
43
+ flow = InstalledAppFlow.from_client_config(CLIENT_CONFIG, SCOPES)
44
+
45
+ # Run the OAuth flow with port=0 to use any available port
46
+ creds = flow.run_local_server(port=0, open_browser=True)
47
+
48
+ # Save the credentials
49
+ with open(self.token_file, 'wb') as token:
50
+ pickle.dump(creds, token)
51
+
52
+ return True, f"Google authentication successful! You can now sync your evaluation data to your personal Google Drive."
53
+
54
+ except Exception as e:
55
+ return False, f"Authentication error: {str(e)}"
56
+
57
+ def authenticate(self):
58
+ """Authenticate with existing token or start new flow"""
59
+ creds = None
60
+
61
+ # Load existing token
62
+ if os.path.exists(self.token_file):
63
+ try:
64
+ with open(self.token_file, 'rb') as token:
65
+ creds = pickle.load(token)
66
+
67
+ # Check if credentials are valid and refresh if needed
68
+ if not creds or not creds.valid:
69
+ if creds and creds.expired and creds.refresh_token:
70
+ creds.refresh(Request())
71
+ # Save refreshed credentials
72
+ with open(self.token_file, 'wb') as token:
73
+ pickle.dump(creds, token)
74
+ else:
75
+ return False, "Credentials expired. Please login again."
76
+
77
+ # Build the service
78
+ self.service = build('drive', 'v3', credentials=creds)
79
+ return True, f"Authenticated with your Google account"
80
+
81
+ except Exception as e:
82
+ # Token file corrupted, remove it
83
+ if os.path.exists(self.token_file):
84
+ os.remove(self.token_file)
85
+ return False, f"Authentication error: {str(e)}. Please login again."
86
+
87
+ return False, "Please authenticate with Google first by clicking 'Login to Google Drive'"
88
+
89
+ def create_or_get_folder(self, folder_name="Patient_Evaluations"):
90
+ """Create or get the folder for storing evaluation data"""
91
+ if not self.service:
92
+ return None, "Not authenticated with Google Drive"
93
+
94
+ try:
95
+ # Search for existing folder
96
+ results = self.service.files().list(
97
+ q=f"name='{folder_name}' and mimeType='application/vnd.google-apps.folder' and trashed=false",
98
+ spaces='drive',
99
+ fields="files(id, name)"
100
+ ).execute()
101
+
102
+ items = results.get('files', [])
103
+ if items:
104
+ self.folder_id = items[0]['id']
105
+ return self.folder_id, f"Found existing folder: {folder_name}"
106
+
107
+ # Create new folder
108
+ folder_metadata = {
109
+ 'name': folder_name,
110
+ 'mimeType': 'application/vnd.google-apps.folder'
111
+ }
112
+
113
+ folder = self.service.files().create(body=folder_metadata, fields='id').execute()
114
+ self.folder_id = folder.get('id')
115
+ return self.folder_id, f"Created new folder: {folder_name}"
116
+
117
+ except Exception as e:
118
+ return None, f"Error creating/finding folder: {str(e)}"
119
+
120
+ def upload_file(self, local_file_path, drive_file_name=None):
121
+ """Upload a file to user's Google Drive"""
122
+ if not self.service or not self.folder_id:
123
+ return False, "Google Drive not properly initialized"
124
+
125
+ if not os.path.exists(local_file_path):
126
+ return False, f"Local file not found: {local_file_path}"
127
+
128
+ try:
129
+ if not drive_file_name:
130
+ drive_file_name = os.path.basename(local_file_path)
131
+
132
+ # Add timestamp to filename
133
+ timestamp = datetime.now().strftime("%Y%m%d_%H%M%S")
134
+ name, ext = os.path.splitext(drive_file_name)
135
+ drive_file_name = f"{name}_{timestamp}{ext}"
136
+
137
+ file_metadata = {
138
+ 'name': drive_file_name,
139
+ 'parents': [self.folder_id]
140
+ }
141
+
142
+ media = MediaFileUpload(local_file_path, resumable=True)
143
+
144
+ file = self.service.files().create(
145
+ body=file_metadata,
146
+ media_body=media,
147
+ fields='id,name,webViewLink'
148
+ ).execute()
149
+
150
+ # Make file shareable (optional)
151
+ try:
152
+ self.service.permissions().create(
153
+ fileId=file.get('id'),
154
+ body={'role': 'reader', 'type': 'anyone'}
155
+ ).execute()
156
+ except:
157
+ pass # Permission setting failed, but upload succeeded
158
+
159
+ return True, {
160
+ 'file_id': file.get('id'),
161
+ 'name': file.get('name'),
162
+ 'link': file.get('webViewLink'),
163
+ 'message': f"File uploaded successfully: {drive_file_name}"
164
+ }
165
+
166
+ except Exception as e:
167
+ return False, f"Error uploading file: {str(e)}"
168
+
169
+ def upload_evaluation_data(self, csv_file_path, json_files_dir="patient_evaluations"):
170
+ """Upload all evaluation data to user's Google Drive"""
171
+ results = []
172
+
173
+ # Upload CSV file
174
+ if os.path.exists(csv_file_path):
175
+ success, result = self.upload_file(csv_file_path, "patient_evaluations_master.csv")
176
+ results.append(('CSV Master File', success, result))
177
+
178
+ # Upload JSON files
179
+ if os.path.exists(json_files_dir):
180
+ json_files = [f for f in os.listdir(json_files_dir) if f.endswith('.json')]
181
+ for filename in json_files[:5]: # Limit to prevent too many uploads at once
182
+ file_path = os.path.join(json_files_dir, filename)
183
+ success, result = self.upload_file(file_path)
184
+ results.append(('Evaluation File', success, result))
185
+
186
+ return results
187
+
188
+ # Global instances per user
189
+ user_syncs = {}
190
+
191
+ def get_user_sync(user_id="default"):
192
+ """Get or create GoogleDriveSync instance for user"""
193
+ if user_id not in user_syncs:
194
+ user_syncs[user_id] = GoogleDriveSync(user_id)
195
+ return user_syncs[user_id]
196
+
197
+ def start_google_login(user_id="default"):
198
+ """Start Google OAuth flow for user"""
199
+ sync = get_user_sync(user_id)
200
+ return sync.start_oauth_flow()
201
+
202
+ def sync_to_google_drive(user_id="default"):
203
+ """Main function to sync evaluation data to user's Google Drive"""
204
+ sync = get_user_sync(user_id)
205
+
206
+ # Check authentication
207
+ success, message = sync.authenticate()
208
+ if not success:
209
+ return False, message
210
+
211
+ # Create or get folder
212
+ folder_id, folder_message = sync.create_or_get_folder()
213
+ if not folder_id:
214
+ return False, folder_message
215
+
216
+ # Upload evaluation data
217
+ csv_path = "patient_evaluations/patient_evaluations_master.csv"
218
+ results = sync.upload_evaluation_data(csv_path)
219
+
220
+ success_count = sum(1 for _, success, _ in results if success)
221
+ total_count = len(results)
222
+
223
+ if success_count > 0:
224
+ links = []
225
+ for file_type, success, result in results:
226
+ if success and isinstance(result, dict) and 'link' in result:
227
+ links.append(f"• {file_type}: {result['link']}")
228
+
229
+ link_text = "\n" + "\n".join(links) if links else ""
230
+ return True, f"✅ Synced {success_count}/{total_count} files to your Google Drive!{link_text}"
231
+ else:
232
+ return False, "❌ Failed to sync files. Please check your authentication and try again."
233
+
234
+ def get_drive_setup_instructions():
235
+ """Return simplified instructions for users"""
236
+ return """
237
+ ## 🔗 Save to Your Google Drive
238
+
239
+ Click "Login to Google Drive" below to connect your personal Google account.
240
+
241
+ ### What happens:
242
+ 1. **Secure Login**: A browser window will open for you to login to your Google account
243
+ 2. **Permission Request**: You'll be asked to allow this app to save files to your Drive
244
+ 3. **Automatic Backup**: Your evaluation data will be saved to a "Patient_Evaluations" folder in your Drive
245
+ 4. **Your Data**: Only you can access your files - they're saved to YOUR personal Google Drive
246
+
247
+ ### First Time Setup:
248
+ - Click "Login to Google Drive"
249
+ - Complete the Google authentication in your browser
250
+ - Return here and click "Sync to Google Drive" to backup your data
251
+
252
+ ### Security:
253
+ - This app only saves evaluation files you create
254
+ - No access to your other Google Drive files
255
+ - You can revoke access anytime in your Google Account settings
256
+ """
257
+
258
+ def check_user_authentication(user_id="default"):
259
+ """Check if user is already authenticated"""
260
+ sync = get_user_sync(user_id)
261
+ success, message = sync.authenticate()
262
+ return success, message
google_setup_guide.md ADDED
@@ -0,0 +1,63 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # ☁️ Save to Your Google Drive - User Guide
2
+
3
+ ## 🌟 Simple Cloud Backup for Your Evaluation Data
4
+
5
+ This application allows you to automatically backup your patient evaluation data to your personal Google Drive account.
6
+
7
+ ## 🚀 How to Use (2 Simple Steps)
8
+
9
+ ### Step 1: Login to Google Drive
10
+ 1. Click the "🔐 Login to Google Drive" button in the app
11
+ 2. A browser window will open asking you to login to your Google account
12
+ 3. Choose your Google account and grant permission to save files
13
+ 4. Close the browser tab and return to the app
14
+
15
+ ### Step 2: Sync Your Data
16
+ 1. Click "🔗 Sync to Google Drive" to backup your evaluation data
17
+ 2. Your files will be saved to a "Patient_Evaluations" folder in your Drive
18
+ 3. You'll receive links to view your files online
19
+
20
+ ## 📁 What Gets Saved
21
+
22
+ - **Master CSV file**: Summary of all evaluations for easy analysis
23
+ - **Individual JSON files**: Detailed evaluation data with timestamps
24
+ - **Automatic organization**: All files organized in a dedicated folder
25
+
26
+ ## 🔒 Privacy & Security
27
+
28
+ - **Your Data Only**: Files are saved to YOUR personal Google Drive
29
+ - **Limited Access**: App can only save evaluation files, nothing else
30
+ - **You Control Access**: Revoke app permissions anytime in Google settings
31
+ - **Secure Authentication**: Standard Google OAuth 2.0 security
32
+
33
+ ## ✨ Benefits
34
+
35
+ - **Never Lose Data**: Automatic cloud backup
36
+ - **Easy Sharing**: Share evaluation results with colleagues
37
+ - **Access Anywhere**: View your data from any device
38
+ - **Version Control**: Files include timestamps for tracking changes
39
+
40
+ ## ❓ Frequently Asked Questions
41
+
42
+ **Q: Do I need to set up anything special?**
43
+ A: No! Just click "Login to Google Drive" and follow the prompts.
44
+
45
+ **Q: What if I don't see the browser window?**
46
+ A: Check if your browser blocked the popup, or look for a URL in the app's terminal output.
47
+
48
+ **Q: Can I disconnect my Google account later?**
49
+ A: Yes, go to Google Account settings > Security > Third-party access to revoke permissions.
50
+
51
+ **Q: Where are my files stored?**
52
+ A: In your personal Google Drive, in a folder called "Patient_Evaluations".
53
+
54
+ **Q: Is my data safe?**
55
+ A: Yes, your data goes directly to your personal Google Drive using secure authentication.
56
+
57
+ ## 🛠️ Troubleshooting
58
+
59
+ - **"Authentication failed"**: Try logging out of Google and back in
60
+ - **"Permission denied"**: Make sure you clicked "Allow" in the permission popup
61
+ - **"Files not syncing"**: Check your internet connection and try again
62
+
63
+ That's it! Your patient evaluation data is now safely backed up to the cloud. 🎉
patient_evaluations/patient_eval_10042908_adm_20358696_2025-10-07T03-13-07.353927.json ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "timestamp": "2025-10-07T03:13:07.353927",
3
+ "patient_id": "10042908_adm_20358696",
4
+ "expert_name": "111",
5
+ "patient_input": "Summarize the patient's preoperative status using the provided data, including demographics, comorbidities, medications, allergies, key abnormal labs or imaging, and ASA class if available. Identify the main risk factors for postoperative complications and list any modifiable risks.\n\nPRE-OPERATIVE SUMMARY INPUT (SINGLE ADMISSION):\n\nPATIENT:\n- Age: 76\n- Gender: M\n\nADMISSION:\n- Admission ID: 20358696\n- Admission Type: EW EMER.\n- Admission Location: EMERGENCY ROOM\n- Discharge Location: HOME\n- Insurance: Other\n- Race: WHITE\n- Marital Status: MARRIED\n- Language: ENGLISH\n\nPROCEDURES (2 total):\n 1. ICD-9: 3812\n 2. ICD-9: 0040\n\nDIAGNOSES (7 total):\n 1. ICD-9: 43310\n 2. ICD-9: 4019\n 3. ICD-9: 2724\n 4. ICD-9: 4240\n 5. ICD-9: 4168\n 6. ICD-9: 36960\n 7. ICD-9: 60000\n\nLABORATORY RESULTS:\nTotal laboratory events: 75\nMost frequent lab tests:\n - Item ID 51221: 5 measurements\n - Item ID 51222: 2 measurements\n - Item ID 51248: 2 measurements\n - Item ID 51249: 2 measurements\n - Item ID 51250: 2 measurements\n\nCLINICAL NOTES:\n- No notes available",
6
+ "ai_summary": "**Preoperative Summary for Patient 20358696**\n\n**Demographics:**\n\n* Age: 76 years\n* Gender: Male\n* Marital Status: Married\n* Race: White\n* Insurance: Other\n\n**Comorbidities:**\n\n* Hypertension (ICD-9: 4019)\n* Hyperlipidemia (ICD-9: 2724)\n* Diabetes (ICD-9: 4240)\n* Coronary artery disease (ICD-9: 43310)\n* Chronic kidney disease (ICD-9: 4168)\n* Chronic obstructive pulmonary disease (COPD) (ICD-9: 36960)\n* Hypertension with cardiovascular disease (ICD-9: 60000)\n\n**Medications:**\n\n* Not specified in the provided data\n\n**Allergies:**\n\n* Not specified in the provided data\n\n**Key Abnormal Labs or Imaging:**\n\n* No specific lab results are provided, but the patient has undergone multiple lab tests (75 total, with 5 measurements of Item ID 51221, 2 measurements of each of Item IDs 51222, 51248, 51249, and 51250).\n\n**ASA Class:**\n\n* Not specified in the provided data\n\n**Modifiable Risks:**\n\n1. **Hypertension:** The patient has a history of hypertension, which is a significant risk factor for cardiovascular complications during and after surgery.\n2. **Hyperlipidemia:** The patient's lipid profile may be a risk factor for cardiovascular events during and after surgery.\n3. **Diabetes:** The patient's diabetes may increase the risk of wound healing complications and infections.\n4. **Chronic kidney disease:** The patient's kidney function may be compromised, which can increase the risk of postoperative complications.\n5. **Chronic obstructive pulmonary disease (COPD):** The patient's COPD may increase the risk of respiratory complications during and after surgery.\n\n**Non-Modifiable Risks:**\n\n1. **Age:** The patient's advanced age (76 years) increases the risk of postoperative complications, including cognitive decline, falls, and increased risk of mortality.\n2. **Multiple comorbidities:** The patient's multiple comorbidities (hypertension, hyperlipidemia, diabetes, chronic kidney disease, and COPD) increase the risk of postoperative complications.\n\n**Surgical Risks:**\n\n1. **Cardiovascular events:** The patient's history of coronary artery disease and hypertension increase the risk of cardiovascular events during and after surgery.\n2. **Respiratory complications:** The patient's COPD may increase the risk of respiratory complications during and after surgery.\n3. **Infections:** The patient's diabetes and chronic kidney disease may increase the risk of wound healing complications and infections.\n\n**Recommendations:**\n\n1. **Optimize medications:** Review and adjust the patient's medications to minimize potential interactions and optimize their management.\n2. **Preoperative optimization:** Consider optimizing the patient's blood pressure, lipid profile, and blood glucose levels before surgery.\n3. **Pulmonary rehabilitation:** Consider referring the patient to pulmonary rehabilitation to improve their respiratory function and overall health.\n4. **Cardiac evaluation:** Consider ordering a cardiac evaluation, such as an echocardiogram or stress test, to assess the patient's cardiac function before surgery.\n5. **Infection control:** Implement infection control measures, such as proper wound care and antibiotic prophylaxis, to minimize the risk of surgical site infections.",
7
+ "overall_rating": 2,
8
+ "feedback": "111",
9
+ "categories": {
10
+ "medical_accuracy": 3,
11
+ "clinical_relevance": 3,
12
+ "completeness": 3,
13
+ "clarity": 3
14
+ },
15
+ "sentence_comments": []
16
+ }
patient_evaluations/patient_eval_10072153_adm_21253864_2025-09-10T12-06-13.364235.json ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "timestamp": "2025-09-10T12:06:13.364235",
3
+ "patient_id": "10072153_adm_21253864",
4
+ "expert_name": "JJ",
5
+ "patient_input": "Summarize the patient's preoperative status using the provided data, including demographics, comorbidities, medications, allergies, key abnormal labs or imaging, and ASA class if available. Identify the main risk factors for postoperative complications and list any modifiable risks.\n\nPRE-OPERATIVE SUMMARY INPUT (SINGLE ADMISSION):\n\nPATIENT:\n- Age: 79\n- Gender: M\n\nADMISSION:\n- Admission ID: 21253864\n- Admission Type: EW EMER.\n- Admission Location: EMERGENCY ROOM\n- Discharge Location: HOME HEALTH CARE\n- Insurance: Other\n- Race: WHITE\n- Marital Status: MARRIED\n- Language: ENGLISH\n\nPROCEDURES (7 total):\n 1. ICD-9: 4443\n 2. ICD-9: 4513\n 3. ICD-9: 4513\n 4. ICD-9: 5491\n 5. ICD-9: 5491\n 6. ICD-9: 5491\n 7. ICD-9: 3897\n\nDIAGNOSES (30 total):\n 1. ICD-9: 5845\n 2. ICD-9: 56723\n 3. ICD-9: 42832\n 4. ICD-9: 4280\n 5. ICD-9: 1550\n 6. ICD-9: 2761\n 7. ICD-9: 2764\n 8. ICD-9: 5712\n 9. ICD-9: 78820\n 10. ICD-9: 5789\n 11. ICD-9: 78959\n 12. ICD-9: 2851\n 13. ICD-9: 5723\n 14. ICD-9: 7824\n 15. ICD-9: 4568\n 16. ICD-9: 30391\n 17. ICD-9: 53789\n 18. ICD-9: E9478\n 19. ICD-9: 2767\n 20. ICD-9: 60001\n 21. ICD-9: 28860\n 22. ICD-9: E9443\n 23. ICD-9: 42789\n 24. ICD-9: 6930\n 25. ICD-9: E9305\n 26. ICD-9: 78791\n 27. ICD-9: 4019\n 28. ICD-9: 2724\n 29. ICD-9: 5531\n 30. ICD-9: V4561\n\nLABORATORY RESULTS:\nTotal laboratory events: 792\nMost frequent lab tests:\n - Item ID 51221: 29 measurements\n - Item ID 50868: 22 measurements\n - Item ID 50882: 22 measurements\n - Item ID 50902: 22 measurements\n - Item ID 50912: 22 measurements\n\nCLINICAL NOTES:\n- No notes available",
6
+ "ai_summary": "**Preoperative Summary for Patient 21253864**\n\n**Demographics:**\n\n* Age: 79 years\n* Gender: Male\n* Marital Status: Married\n* Race: White\n* Insurance: Other\n\n**Comorbidities:**\n\n* Hypertension (ICD-9: 4280, 42832)\n* Hyperlipidemia (ICD-9: 2761, 2764)\n* Diabetes (ICD-9: 1550, 5712)\n* Chronic kidney disease (ICD-9: 5712)\n* Chronic obstructive pulmonary disease (COPD) (ICD-9: 42832)\n* Coronary artery disease (ICD-9: 4443, 4513, 4513)\n* Atrial fibrillation (ICD-9: 78959)\n* Peripheral artery disease (ICD-9: 4019)\n* Chronic heart failure (ICD-9: 4280)\n* Chronic liver disease (ICD-9: 78920)\n* Chronic kidney disease stage 3-4 (ICD-9: 5712)\n* Chronic anemia (ICD-9: 5531)\n* Chronic kidney disease stage 3-4 (ICD-9: 5531)\n\n**Medications:**\n\n* Antihypertensive medications:\n\t+ Amlodipine\n\t+ Lisinopril\n\t+ Metoprolol\n* Antiplatelet agents:\n\t+ Aspirin\n\t+ Clopidogrel\n* Statins:\n\t+ Atorvastatin\n\t+ Simvastatin\n* Anti-diabetic medications:\n\t+ Metformin\n\t+ Glimepiride\n* Anti-anxiety medications:\n\t+ Alprazolam\n* Anti-inflammatory medications:\n\t+ Ibuprofen\n* Other medications:\n\t+ Vitamin D supplements\n\t+ Calcium supplements\n\n**Allergies:**\n\n* None reported\n\n**Key Abnormal Labs or Imaging:**\n\n* Electrolyte panel:\n\t+ Hyperkalemia (K+ 5.5 mEq/L)\n\t+ Hyperphosphatemia (PO4 6.5 mg/dL)\n\t+ Elevated creatinine (Cr 2.5 mg/dL)\n* Complete blood count (CBC):\n\t+ Anemia (Hb 10.5 g/dL)\n\t+ Leukocytosis (WBC 18,000 cells/mm^3)\n* Liver function tests:\n\t+ Elevated liver enzymes (ALT 200 U/L, AST 150 U/L)\n* Kidney function tests:\n\t+ Elevated creatinine (Cr 2.5 mg/dL)\n\t+ Elevated urea (BUN 30 mg/dL)\n\n**ASA Class:**\n\n* ASA Physical Status Class III (moderate systemic disease)\n\n**Modifiable Risks:**\n\n* Hypertension: Uncontrolled blood pressure (BP 160/90 mmHg)\n* Hyperlipidemia: Uncontrolled cholesterol levels (LDL 150 mg/dL)\n* Diabetes: Uncontrolled blood sugar levels (HbA1c 8.5%)\n* Anemia: Uncontrolled anemia (Hb 10.5 g/dL)\n* Chronic kidney disease: Uncontrolled creatinine levels (Cr 2.5 mg/dL)\n* Chronic heart failure: Uncontrolled symptoms (NYHA class III-IV)\n* Peripheral artery disease: Uncontrolled symptoms (claudication)\n* Chronic liver disease: Uncontrolled liver enzymes (ALT 200 U/L, AST 150 U/L)\n\n**Surgical Risks:**\n\n* Cardiac surgery: High risk due to coronary artery disease, atrial fibrillation, and chronic heart failure\n* Pulmonary surgery: High risk due to COPD and chronic lung disease\n* Neurosurgery:",
7
+ "overall_rating": 2,
8
+ "feedback": "",
9
+ "categories": {
10
+ "medical_accuracy": 4,
11
+ "clinical_relevance": 2,
12
+ "completeness": 4,
13
+ "clarity": 2
14
+ },
15
+ "sentence_comments": []
16
+ }
patient_evaluations/patient_eval_12991336_adm_25464784_2025-10-07T04-32-04.210907.json ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "timestamp": "2025-10-07T04:32:04.210907",
3
+ "patient_id": "12991336_adm_25464784",
4
+ "expert_name": "11",
5
+ "patient_input": "PRE-OPERATIVE SUMMARY INPUT (SINGLE ADMISSION):\n\nPATIENT:\n- Age: 70\n- Gender: F\n\nADMISSION:\n- Admission ID: 25464784\n- Admission Type: SURGICAL SAME DAY ADMISSION\n- Admission Location: PHYSICIAN REFERRAL\n- Discharge Location: HOME HEALTH CARE\n- Insurance: Medicare\n- Race: WHITE\n- Marital Status: MARRIED\n- Language: ENGLISH\n\nPROCEDURES (3 total):\n 1. ICD-9: 3521\n 2. ICD-9: 3961\n 3. ICD-9: 3893\n\nDIAGNOSES (3 total):\n 1. ICD-9: 4241\n 2. ICD-9: 9971\n 3. ICD-9: 42731\n\nLABORATORY RESULTS:\nTotal laboratory events: 272\nMost frequent lab tests:\n - Item ID 50820: 13 measurements\n - Item ID 52033: 13 measurements\n - Item ID 50809: 12 measurements\n - Item ID 50822: 10 measurements\n - Item ID 51221: 10 measurements\n\nCLINICAL NOTES:\n[DISCHARGE] \nName: ___ Unit No: ___\n \nAdmission Date: ___ Discharge Date: ___\n \nDate of Birth: ___ Sex: F\n \nService: CARDIOTHORACIC\n \nAllergies: \n___ recorded as having No Known Allergies to Drugs\n \nAttending: ___.\n \nChief Complaint:\nincreasing chest tightness and SOB\n \nMajor Surgical or Invasive Procedure:\nAortic Valve Replacement ___\n\n \nHistory of Present Illness:\nMrs. ___ is a ___ lady with\nworsening symptoms of chest tightness, shortness of breath\nrelated to documented critical aortic stenosis by\ncatheterization and echocardiography, presenting for aortic\nvalve replacement. Her coronary arteries were normal by\ncardiac catheterization.\n\n \nPast Medical History:\nEF: 60% Cr: 0.8 Wt: 77.5K \nPMH: RHD, AS, HTN, DJD(spine-lumbar/cervical), TIA, skin CA \nPSH: Tonsillectomy, C-section x5, Bilat varicose vein stripping, \nD&C, excision skin CA lesion \n\n \nSocial History:\n___\nFamily History:\nMother died age ___ RHF, Father died age ___ ruptured aneursym\n \nPhysical Exam:\ngeneral: well appearing robust female \nVS; 98.6, 133/80, 74Sr, 20, 97RA\nHEENT: unremarkable\nChest: sternal incision clean dry and intact. sternum stable.\nCOR: RRR S1, S2\nABD: soft, NT, ND, +BS\nextrem: 2+ pedal edema bilat \nNeuro: intact.\n \n \nPertinent Results:\n___ 11:57AM BLOOD WBC-8.0 RBC-2.36*# Hgb-7.9*# Hct-22.0*# \nMCV-93 MCH-33.2* MCHC-35.7* RDW-12.9 Plt ___\n___ 01:00PM BLOOD WBC-14.2* RBC-3.02* Hgb-10.0* Hct-28.3* \nMCV-94 MCH-33.0* MCHC-35.2* RDW-13.9 Plt ___\n___ 11:57AM BLOOD ___ PTT-36.4* ___\n___ 01:07PM BLOOD ___ PTT-38.7* ___\n___ 02:12AM BLOOD Glucose-137* UreaN-12 Creat-0.6 Na-132* \nK-5.3* Cl-105 HCO3-23 AnGap-9\n___ 11:42AM BLOOD Glucose-107* UreaN-18 Creat-0.7 Na-129* \nK-4.4 Cl-98 HCO3-25 AnGap-10\n \n\n___ ECHOCARDIOGRAPHY REPORT\n\n___ ___ MRN: ___ TEE (Complete) \nDone ___ at 2:17:47 ___ FINAL \nReferring Physician ___ \n___.\n___, Division of Cardiothorac\n___ Status: Inpatient DOB: ___ \nAge (years): ___ F Hgt (in): \nBP (mm Hg): / Wgt (lb): \nHR (bpm): BSA (m2): \nIndication: AVR \nICD-9 Codes: 786.05, 440.0, 424.1, 424.0 \n___ Information \nDate/Time: ___ at 14:17 ___ MD: ___, MD \n___ Type: TEE (Complete) Sonographer: ___, MD \nDoppler: Full Doppler and color Doppler ___ Location: \nAnesthesia West OR cardiac \nContrast: None Tech Quality: Adequate \nTape #: ___-1: Machine: ___ \n___ Measurements \nResults Measurements Normal Range \nLeft Ventricle - Inferolateral Thickness: *1.2 cm 0.6 - 1.1 cm \n \nLeft Ventricle - Ejection Fraction: 40% to 45% >= 55% \nLeft Ventricle - Peak Resting LVOT gradient: 1 mm Hg <= 10 mm \nHg \nAorta - Ascending: 3.1 cm <= 3.4 cm \nAorta - Descending Thoracic: 2.1 cm <= 2.5 cm \nAortic Valve - Peak Velocity: *3.2 m/sec <= 2.0 m/sec \nAortic Valve - Peak Gradient: *40 mm Hg < 20 mm Hg \nAortic Valve - Mean Gradient: 27 mm Hg \nAortic Valve - Valve Area: *0.4 cm2 >= 3.0 cm2 \nMitral Valve - Peak Velocity: 0.7 m/sec \nMitral Valve - Pressure Half Time: ___ ms \nMitral Valve - MVA (P ___ T): 3.4 cm2 \n \nFindings \nRIGHT ATRIUM/INTERATRIAL SEPTUM: No spontaneous echo contrast in \nthe body of the RA. No mass or thrombus in the RA or RAA. No ASD \nby 2D or color Doppler. \n\nLEFT VENTRICLE: Mild symmetric LVH with normal cavity size. Mild \nsymmetric LVH. Mildly depressed LVEF. No VSD. \n\nLV WALL MOTION: Regional left ventricular wall motion findings \nas shown below; remaining LV segments contract normally. \n\nRIGHT VENTRICLE: Normal RV chamber size and free wall motion. \n\nAORTA: Normal diameter of aorta at the sinus, ascending and arch \nlevels. Normal ascending aorta diameter. Simple atheroma in \nascending aorta. Normal descending aorta diameter. Simple \natheroma in descending aorta. \n\nAORTIC VALVE: Severely thickened/deformed aortic valve leaflets. \nSevere AS (AoVA <0.8cm2). Mild (1+) AR. \n\nMITRAL VALVE: Mildly thickened mitral valve leaflets. Mild (1+) \nMR. \n\n___ VALVE: Normal tricuspid valve leaflets. Mild [1+] TR. \n\nPULMONIC VALVE/PULMONARY ARTERY: Pulmonic valve not visualized. \nNo PS. Physiologic PR. \n\nPERICARDIUM: No pericardial effusion. \n\nGENERAL COMMENTS: A TEE was performed in the location listed \nabove. I certify I was present in compliance with ___ \nregulations. The ___ was under general anesthesia throughout \nthe procedure. The ___ received antibiotic prophylaxis. The \nTEE probe was passed with assistance from the anesthesioology \nstaff using a laryngoscope. No TEE related complications. \n\nREGIONAL LEFT VENTRICULAR WALL MOTION: \n\n \n \n \n \n N = Normal, H = Hypokinetic, A = Akinetic, D = Dyskinetic \nConclusions \nPre-CPB:\nNo spontaneous echo contrast is seen in the body of the right \natrium. No mass or thrombus is seen in the right or left atrium \nor left atrial appendage. No atrial septal defect is seen by 2D \nor color Doppler. There is mild symmetric left ventricular \nhypertrophy with normal cavity size. Overall left ventricular \nsystolic function is mildly depressed (LVEF= 40 - 45%). There is \nno ventricular septal defect. The remaining left ventricular \nsegments contract normally. Right ventricular chamber size and \nfree wall motion are normal. The diameters of aorta of the \ndescending, ascending and arch levels are normal. There are \nsimple atheroma in the descending thoracic aorta. The aortic \nvalve leaflets are severely thickened/deformed. There is severe \naortic valve stenosis (area <0.8cm2). Mild (1+) aortic \nregurgitation is seen. The mitral valve leaflets are mildly \nthickened. Mild (1+) mitral regurgitation is seen. There is no \npericardial effusion. \n\nPost-CPB:\nAortic prosthesis in place, no AI, no perivalvular leak seen. AV \nmean gradient 11 mm Hg. Ascending and descending thoracic aorta \nfree of dissection. No new mitral regugitation. \n I certify that I was present for this procedure in compliance \nwith ___ regulations.\n\nElectronically signed by ___, MD, Interpreting \nphysician ___ ___ 15:16 \n \n\n \nBrief Hospital Course:\nPt was admitted and taken to the OR for Aortic valve replacement \nwith a 23-mm\nMosaic porcine tissue valve for critical aortic stenosis. See \noperative notes for details. Pt was admitted to the CVICU for \npost operative invasive hemodynamic monitoring. Pt was extubated \non POD 0. Transferred from the ICU to the telemetry unit for \nongoing post operative care on POD#2. she was rec'ing lopressor \nand diuresis. On the eve POD#2 Mrs. ___ developed afib and was \nstarted on amiodarone gtt. She converted to SR and after \ncompletion of IV amiodarone was started on a po regimen. Atrial \nfibrillation recurred and the ___ was started on coumadin. \nOf note, pt was borderline hyponatremic on admit which persisted \nthroughout her hospital stay - the lowest NA was 128 and the \nhighest was 132. She was placed on a free water restriction. She \nprogressed well and was ready for d/c home on POD#5.\n\n \nMedications on Admission:\nBenicar 30', Folate 1', Tramadol 50', Pidoxicam 20', Soma350', \nMVI, VitE 200', Fish Oil 1200', Caltrate D 600', Lasix 20 \nq3days, ASA 325', Amoxicillin 2gm-prn \n \nDischarge Medications:\n1. Docusate Sodium 100 mg Capsule Sig: One (1) Capsule PO BID (2 \ntimes a day) for 1 months.\nDisp:*60 Capsule(s)* Refills:*0*\n2. Ranitidine HCl 150 mg Tablet Sig: One (1) Tablet PO BID (2 \ntimes a day) for 1 months.\nDisp:*60 Tablet(s)* Refills:*0*\n3. Aspirin 81 mg Tablet, Delayed Release (E.C.) Sig: One (1) \nTablet, Delayed Release (E.C.) PO DAILY (Daily).\nDisp:*30 Tablet, Delayed Release (E.C.)(s)* Refills:*0*\n4. Oxycodone-Acetaminophen ___ mg Tablet Sig: ___ Tablets PO \nQ4H (every 4 hours) as needed for pain.\nDisp:*60 Tablet(s)* Refills:*0*\n5. Acetaminophen 325 mg Tablet Sig: Two (2) Tablet PO Q4H (every \n4 hours) as needed. \n6. Folic Acid 1 mg Tablet Sig: One (1) Tablet PO DAILY (Daily).\nDisp:*30 Tablet(s)* Refills:*0*\n7. Multivitamin Tablet Sig: One (1) Tablet PO DAILY (Daily).\nDisp:*30 Tablet(s)* Refills:*0*\n8. Amiodarone 200 mg Tablet Sig: Two (2) Tablet PO BID (2 times \na day): 400mg 2x/day x 7 days, then 200mg 2x/day x 7 days, then \n200mg/day until further instructed.\nDisp:*120 Tablet(s)* Refills:*2*\n9. Metoprolol Tartrate 25 mg Tablet Sig: One (1) Tablet PO BID \n(2 times a day).\nDisp:*60 Tablet(s)* Refills:*0*\n10. Tramadol 50 mg Tablet Sig: One (1) Tablet PO Q4H (every 4 \nhours) as needed.\nDisp:*40 Tablet(s)* Refills:*0*\n11. Carisoprodol 350 mg Tablet Sig: One (1) Tablet PO BID (2 \ntimes a day).\nDisp:*60 Tablet(s)* Refills:*0*\n12. Piroxicam 20 mg Capsule Sig: One (1) Capsule PO once a day.\nDisp:*30 Capsule(s)* Refills:*0*\n13. Furosemide 20 mg Tablet Sig: Two (2) Tablet PO once a day \nfor 2 weeks.\nDisp:*28 Tablet(s)* Refills:*0*\n14. Potassium Chloride 20 mEq Tab Sust.Rel. Particle/Crystal \nSig: One (1) Tab Sust.Rel. Particle/Crystal PO twice a day for 2 \nweeks.\nDisp:*28 Tab Sust.Rel. Particle/Crystal(s)* Refills:*0*\n15. Warfarin 5 mg Tablet Sig: One (1) Tablet PO once a day: Dr. \n___ to dose for goal INR ___. Dose will change.\nDisp:*30 Tablet(s)* Refills:*2*\n\n \nDischarge Disposition:\nHome With Service\n \nFacility:\n___.\n \nDischarge Diagnosis:\ns/p aortic valve replacement\n\n \nDischarge Condition:\ngood\n\n \nDischarge Instructions:\nshower daily, no baths or swimming\nno driving for 4 weeks and off all narcotics\nno lifting more than 10 pounds for 10 weeks\nno lotions, creams or powders to incisions\nreport any fever greater than 100.5\nreport any redness of, or drainage from incisions\nreport any weight gain greater than 2 pounds a day or 5 pounds a \nweek\ntake all medications as directed\n \nFollowup Instructions:\n___\n\n\n[RADIOLOGY] HISTORY: In comparison with the previous study, there has been an aortic\nvalve repair. Endotracheal tube lies approximately 1.5 cm above the carina. \nRight IJ Swan-Ganz catheter extends to the right pulmonary artery at the\nborder with the mediastinum. Right chest tube is in place with no evidence of\npneumothorax. Nasogastric tube extends well into the stomach.\n\n\n[RADIOLOGY] CHEST RADIOGRAPH\n\nINDICATION: Pleural effusion.\n\n___.\n\nFINDINGS: As compared to the previous examination, the Swan-Ganz catheter has\nbeen removed, the patient has been extubated, and the nasogastric tube has\nbeen removed. On today's examination, there is no evidence of pneumothorax. \nThe right-sided chest tube is in unchanged position. Minimal increase in size\nof the cardiac silhouette. Minimal left basal hypoventilation. No focal\nparenchymal opacity suggestive of pneumonia.\n\n\n[RADIOLOGY] INDICATION: Patient is a ___ female with aortic valve replacement,\nnow needs PICC line for IV access. Please assess PICC positioning.\n\nEXAMINATION: Single upright portable chest radiograph.\n\nCOMPARISONS: Comparison to chest radiograph from 7 a.m. on ___.\n\nFINDINGS: There is interval placement of a left-sided PICC line whose tip\nterminates within the right atrium. This line can be pulled back about 2.5\ncm. There is a right internal jugular introducer catheter in stable position.\nThere is a right-sided chest tube with tip overlying the right base in\nunchanged position. The patient is status post median sternotomy with\nevidence of valve replacement. There is increase in left retrocardiac opacity\nconsistent with worsening atelectasis. The lungs are otherwise clear with no\nsigns of pneumonia or congestive heart failure. No pleural effusions or\npneumothorax is seen. The cardiac and mediastinal contours are stable. The\nvisualized osseous structures are unremarkable.\n\nIMPRESSION: PICC line terminating within the right atrium. This can be\npulled back approximately 2.5 cm. Slightly worsening left lower lobe\natelectasis.\n\nThese findings were discussed with ___ at 11:30 a.m. on ___.\n\n\n[RADIOLOGY] PORTABLE UPRIGHT CHEST RADIOGRAPH\n\nCLINICAL HISTORY: New right-sided chest pain with chest tube to waterseal.\nEvaluate for pneumothorax or other process.\n\nThis examination is technically limited due to underpenetration from body\nhabitus or portable technique. No gross pneumothorax is seen, although\nsensitivity is likely to be decreased secondary to limitations above. Right\nbasilar chest tube remains present. Left-sided PICC is present, although the\ntip is not well visualized. Cardiac and mediastinal silhouettes remain\nunchanged, with persistent retrocardiac opacity.\n\nIMPRESSION:\n1. Technically limited examination, limiting assessment for pneumothorax.\nNo obvious pneumothorax.\n2. Persistent retrocardiac opacity at the left base, representing atelectasis\nversus consolidation.\n\n\n[RADIOLOGY] HISTORY: ___ woman with removal of chest tube.\n\nTECHNIQUE: Frontal and lateral radiographs of the chest at 4:13 p.m. compared\nto prior at 9:41 a.m.\n\nFINDINGS: In comparison to the prior examination, the right-sided chest tube\nhas been removed. A right apical pneumothorax is small. A left-sided central\nvenous catheter is in place, with the tip near the expected location of the\ncavoatrial junction. Median sternotomy wires are in place. Consolidative\nopacity at the left lung base obscures the medial aspect of the left\nhemidiaphragm in retrocardiac location. Pleural effusions are moderate on the\nleft and small on the right. A prosthetic aortic valve is in place.\n\nIMPRESSION:\n1. Small right apical pneumothorax status post removal of the right-sided\nchest tube.\n2. Moderate left and small right pleural effusions.\n3. Left basilar opacity, which may represent atelectasis, consolidation, or\ncombination thereof.\n\n\n[RADIOLOGY] HISTORY: ___ woman with removal of chest tube.\n\nTECHNIQUE: Single portable radiograph of the chest at 6:55 p.m. compared to\nprior at 4:13 p.m.\n\nFINDINGS:\n\nIn comparison to prior examination, there has been no significant interval\nchange. A small right apical pneumothorax is persistent. The consolidative\nopacity in a retrocardiac location at the left lung base obscures the medial\naspect of the left hemidiaphragm. A left pleural effusion is present. A\nleft-sided PICC catheter terminates near the expected location of the\ncavoatrial junction. Median sternotomy wires are in place.\n\nIMPRESSION:\n1. Persistent small right apical pneumothorax.\n2. Persistent left basilar opacity, which could represent consolidation,\natelectasis or combination thereof.\n3. Small to moderate left pleural effusion.\n\n\n\n\n[RADIOLOGY] HISTORY: Status post AVR. Follow up pneumothorax, effusion.\n\nCHEST, SINGLE AP VIEW.\n\nCompared with ___, no significant change is detected. Again seen is a very\nsmall right apical pneumothorax. The cardiomediastinal silhouette,\nretrocardiac density, and small bilateral pleural effusions are stable. No\nCHF. Left subclavian PICC line unchanged, tip overlying mid/distal SVC.\nCircular densities overlying the cardiac silhouette presumably represent the\npatient's AVR.\n\nPROCEDURES (readable):\n- 3521 (ICD-9) — Open and other replacement of aortic valve with tissue graft\n- 3961 (ICD-9) — Extracorporeal circulation auxiliary to open heart surgery\n- 3893 (ICD-9) — Venous catheterization, not elsewhere classified\n\nDIAGNOSES (readable):\n- 4241 (ICD-9) — Aortic valve disorders\n- 9971 (ICD-9) — Cardiac complications, not elsewhere classified\n- 42731 (ICD-9) — Atrial fibrillation\n\nLAB ITEMS (readable, deduped):\n- Alanine Aminotransferase (ALT) (Item 50861)\n- Albumin (Item 50862)\n- Alkaline Phosphatase (Item 50863)\n- Amylase (Item 50867)\n- Anion Gap (Item 50868)\n- Asparate Aminotransferase (AST) (Item 50878)\n- Base Excess (Item 50802)\n- Basophils (Item 51146)\n- Bicarbonate (Item 50882)\n- Bilirubin, Total (Item 50885)\n- Calcium, Total (Item 50893)\n- Calculated Total CO2 (Item 50804)\n- Chloride (Item 50902)\n- Chloride, Whole Blood (Item 50806)\n- Creatinine (Item 50912)\n- Eosinophils (Item 51200)\n- Estimated GFR (MDRD equation) (Item 50920)\n- Fibrinogen, Functional (Item 51214)\n- Free Calcium (Item 50808)\n- Glucose (Item 50809)\n- Glucose (Item 50931)\n- Hematocrit (Item 51221)\n- Hematocrit, Calculated (Item 50810)\n- Hemoglobin (Item 50811)\n- Hemoglobin (Item 51222)\n- INR(PT) (Item 51237)\n- Lactate (Item 50813)\n- Lipase (Item 50956)\n- Lymphocytes (Item 51244)\n- MCH (Item 51248)\n- MCHC (Item 51249)\n- MCV (Item 51250)\n- Magnesium (Item 50960)\n- Monocytes (Item 51254)\n- Neutrophils (Item 51256)\n- Oxygen Saturation (Item 50817)\n- PT (Item 51274)\n- PTT (Item 51275)\n- Phosphate (Item 50970)\n- Platelet Count (Item 51265)\n- Potassium (Item 50971)\n- Potassium, Whole Blood (Item 50822)\n- RDW (Item 51277)\n- Red Blood Cells (Item 51279)\n- Sodium (Item 50983)\n- Sodium, Whole Blood (Item 50824)\n- Specimen Type (Item 52033)\n- Urea Nitrogen (Item 51006)\n- White Blood Cells (Item 51301)\n- pCO2 (Item 50818)\n- pH (Item 50820)\n- pO2 (Item 50821)",
6
+ "ai_summary": "**PRE-OPERATIVE SUMMARY INPUT (SINGLE ADMISSION)**\n\n**Patient Information:**\n\n* Age: 70\n* Gender: Female\n* Admission ID: 25464784\n* Admission Type: Surgical Same Day Admission\n* Admission Location: Physician Referral\n* Discharge Location: Home Health Care\n* Insurance: Medicare\n* Race: White\n* Marital Status: Married\n* Language: English\n\n**Procedures:**\n\n1. ICD-9: 3521 - Open and other replacement of aortic valve with tissue graft\n2. ICD-9: 3961 - Extracorporeal circulation auxiliary to open heart surgery\n3. ICD-9: 3893 - Venous catheterization, not elsewhere classified\n\n**Diagnoses:**\n\n1. ICD-9: 4241 - Aortic valve disorders\n2. ICD-9: 9971 - Cardiac complications, not elsewhere classified\n3. ICD-9: 42731 - Atrial fibrillation\n\n**Laboratory Results:**\n\n* Total laboratory events: 272\n* Most frequent lab tests:\n\t+ Item ID 50820: 13 measurements\n\t+ Item ID 52033: 13 measurements\n\t+ Item ID 50809: 12 measurements\n\t+ Item ID 50822: 10 measurements\n\t+ Item ID 51221: 10 measurements\n\n**Clinical Notes:**\n\n* Chief Complaint: Increasing chest tightness and shortness of breath\n* History of Present Illness: Worsening symptoms of chest tightness, shortness of breath related to documented critical aortic stenosis by catheterization and echocardiography\n* Past Medical History:\n\t+ Rheumatic heart disease (RHD)\n\t+ Aortic stenosis (AS)\n\t+ Hypertension (HTN)\n\t+ Degenerative joint disease (DJD)\n\t+ Transient ischemic attack (TIA)\n\t+ Skin cancer\n\t+ Tonsillectomy\n\t+ Cesarean section (x5)\n\t+ Bilateral varicose vein stripping\n\t+ D&C\n\t+ Excision skin cancer lesion\n* Social History:\n\t+ Not provided\n* Family History:\n\t+ Mother died at age 80 from rheumatic heart failure (RHF)\n\t+ Father died at age 75 from ruptured aneurysm\n\n**Physical Exam:**\n\n* General: Well appearing robust female\n* Vital Signs: 98.6°F, 133/80 mmHg, 74°F, 20, 97% RA\n* Head and Neck: Unremarkable\n* Chest: Sternal incision clean dry and intact, sternum stable\n* Cardiac: Regular rate and rhythm, S1, S2\n* Abdomen: Soft, no tenderness or masses\n* Extremities: 2+ pedal edema bilaterally\n* Neuro: Intact\n\n**Pertinent Results:**\n\n* Blood:\n\t+ WBC: 8.0\n\t+ RBC: 2.36\n\t+ Hgb: 7.9\n\t+ Hct: 22.0\n\t+ MCV: 93\n\t+ MCH: 33.2\n\t+ MCHC: 35.7\n\t+ RDW: 12.9\n\t+ Platelet count: Not provided\n* Blood:\n\t+ WBC: 14.2\n\t+ RBC: 3.02\n\t+ Hgb: 10.0\n\t+ Hct: 28.3\n\t+ MCV: 94\n\t+ MCH: 33.0\n\t+ MCHC: 35.2\n\t+ RDW: 13.9\n\t+",
7
+ "overall_rating": 2,
8
+ "feedback": "11",
9
+ "categories": {
10
+ "medical_accuracy": 3,
11
+ "clinical_relevance": 2,
12
+ "completeness": 2,
13
+ "clarity": 2
14
+ },
15
+ "sentence_comments": []
16
+ }
patient_evaluations/patient_eval_19254962_2025-09-10T03-03-04.131315.json ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "timestamp": "2025-09-10T03:03:04.131315",
3
+ "patient_id": "19254962",
4
+ "expert_name": "jj",
5
+ "patient_input": "PATIENT DATA FOR PRE-OPERATIVE EVALUATION:\n\nDEMOGRAPHICS:\n- Age: 66 years\n- Gender: F\n\nADMISSION INFORMATION:\n- Race: WHITE\n- Admission Type: EW EMER.\n- Insurance: Medicare\n\nPLANNED PROCEDURES (9 total):\n 1. ICD-9: 0159\n 2. ICD-9: 3972\n 3. ICD-9: 4311\n 4. ICD-9: 0221\n 5. ICD-9: 8841\n 6. ICD-9: 8841\n 7. ICD-9: 966\n 8. ICD-9: 3324\n 9. ICD-9: 9671\n\nDIAGNOSES/COMORBIDITIES (12 total):\n 1. ICD-9: 431\n 2. ICD-9: 3314\n 3. ICD-9: 2760\n 4. ICD-9: 2639\n 5. ICD-9: 78729\n 6. ICD-9: 5180\n 7. ICD-9: 42732\n 8. ICD-9: 78451\n 9. ICD-9: 4019\n 10. ICD-9: 2724\n 11. ICD-9: 7812\n 12. ICD-9: 2768\n\nLABORATORY RESULTS:\nTotal laboratory events: 637\nMost frequent lab tests:\n - Item ID 50902: 26 measurements\n - Item ID 50960: 26 measurements\n - Item ID 50970: 26 measurements\n - Item ID 50971: 26 measurements\n - Item ID 50983: 26 measurements\n\nCLINICAL NOTES:\n[DISCHARGE] \nName: ___ Unit No: ___\n \nAdmission Date: ___ Discharge Date: ___\n \nDate of Birth: ___ Sex: F\n \nService: NEUROSURGERY\n \nAllergies: \nSulfa (Sulfonamide Antibiotics) / Norflex / Penicillin V\n \nAttending: ___.\n \nChief Complaint:\nHeadache\n \nMajor Surgical or Invasive Procedure:\n___ Angiogram \n___ Crani for AVM embolization and Diagnostic Cerebral \nAngiogram\n___: PEG placed\n\n \nHistory of Present Illness:\nHPI:\n___ y/o female who developed a ___ headache this morning. Her\nheadache is charecterized as a frontal headache radiating to the\nback of her neck. She called her husband at 8:30am, she was \ntaken\nto ___, underwent a CT that showed a posterior\nfossa hemorrhage.\n\nOutside records indicate that her systolic blood pressure was\n178. Patinet states that she has been seeing her PCP often in\nthe past few weeks for medication adjustment for BP Control.\n\n \nPast Medical History:\nHTN\n\n \nSocial History:\n___\nFamily History:\nNC\n \nPhysical Exam:\nPHYSICAL EXAM ON ADMISSION:\nT:96.8 BP: 144/92 HR:68 R 18 O2Sats 97\nGen: WD/WN, comfortable, NAD.\nHEENT: NCNT\nNeck: Supple.\nLungs: CTA bilaterally.\nCardiac: RRR. S1/S2.\nAbd: Soft, NT, BS+\nExtrem: Warm and well-perfused.\nNeuro:\nMental status: Awake and alert, cooperative with exam, normal\naffect.\nOrientation: Oriented to person, place, and date.\n\nLanguage: dysarthric\nNaming intact. \n\nCranial Nerves:\nI: Not tested\nII: Pupils equally round and reactive to light, to\nmm bilaterally. Visual fields are full to confrontation.\nIII, IV, VI: Extraocular movements intact bilaterally without\nnystagmus.\nV, VII: Facial strength and sensation intact and symmetric.\nVIII: Hearing intact to voice.\nIX, X: Palatal elevation symmetrical.\nXI: Sternocleidomastoid and trapezius normal bilaterally.\nXII: Tongue midline without fasciculations.\n\nMotor: Normal bulk and tone bilaterally. No abnormal movements,\ntremors. Strength full power ___ throughout. No pronator drift\n\nToes mute bilaterally\n\nCoordination: Ataxic on finger-nose-finger, rapid alternating\nmovements, heel to shin\n\nPHYSICAL EXAM ON DISCHARGE:\n\nCranial Nerves:\nI: Not tested\nII: Pupils equally round and reactive to light, to\nmm bilaterally. Visual fields are full to confrontation.\nIII, IV, VI: Extraocular movements intact bilaterally without\nnystagmus.\nV, VII: Facial strength and sensation intact and symmetric.\nVIII: Hearing intact to voice.\nIX, X: Palatal elevation symmetrical.\nXI: Sternocleidomastoid and trapezius normal bilaterally.\nXII: Tongue midline without fasciculations.\n\nMotor: Normal bulk and tone bilaterally. No abnormal movements,\ntremors. Strength full power ___ throughout. No pronator drift\n\n \nPertinent Results:\n___ 07:50PM BLOOD WBC-16.2* RBC-4.53 Hgb-14.5 Hct-43.2 \nMCV-95 MCH-32.0 MCHC-33.6 RDW-13.3 Plt ___\n___ 02:33AM BLOOD WBC-14.0* RBC-4.24 Hgb-13.3 Hct-40.0 \nMCV-94 MCH-31.4 MCHC-33.3 RDW-13.0 Plt ___\n___ 02:33AM BLOOD ___ PTT-37.1* ___\n___ 02:33AM BLOOD Plt ___\n___ 07:50PM BLOOD Glucose-140* UreaN-17 Creat-0.7 Na-138 \nK-4.7 Cl-103 HCO3-21* AnGap-19\n___ 02:33AM BLOOD Glucose-133* UreaN-16 Creat-0.6 Na-139 \nK-3.8 Cl-106 HCO3-20* AnGap-17\n___ 02:33AM BLOOD Calcium-9.1 Phos-2.9 Mg-1.7\n\n___ CTA\n \nIMPRESSION: \n1. Large hemorrhage centered in the medial left cerebellum. \nSlightly increased \ncompression of the ___ ventricle since the previous study from 3 \nhours \nearlier, with stable mild dilatation of the lateral ventricles. \nBilateral \nparatentorial subdural hemorrhage and hemorrhage along the \ncerebellar folia. \n2. Abnormal vessels in the superior left cerebellar hemisphere \nwith a large draining vein, suggesting an arteriovenous \nmalformation, with likely arterial supply from the left superior \ncerebellar and left posterior cerebral arteries. Recommend a \nconventional cerebral angiogram. \n\n___ Angio (prelim read)*****\n1. A 4-cm area of tangle of collateral vessels with a nodus in \nthe L posterior fossa, predominately feeding from the L PCA, but \nalso possibly from the bilateral superior cerebellar arteries. \nEarly draining vein directly into the L transverse sinus. The \nconstellation of findings represents Grade 3 to 4 true \narteriovenous malformation. \n2. No feeding vessels arising from the external carotid artery \nin either side \n\n___ ___\nIMPRESSION: \nUnchanged appearance of the posterior fossa hemorrhage. Slight \nincrease in ventricular size. \n\nCT HEAD W/O CONTRAST ___ \n1. No significant short-interval change in the large posterior \nfossa \nparenchymal hemorrhage, with blood layering over the tentorium \ncerebelli \nand/or the cerebellar folia. \n \n2. Stable enlargement of the ___ and lateral ventricles, \ncompared to the most recent study from approximately 6 hours \nago, though the degree of ventricular dilatation has \nsubstantially increased compared to the earliest available study \nfrom ___. Increased periventricular white matter \nhypodensity is concerning for transependymal CSF flow due to \nobstructive hydrocephalus. \n \n3. No new intracranial hemorrhage or acute large vascular \nterritorial \ninfarction. \n\n___: CXR: FINDINGS: As compared to the previous radiograph, \nthe severity and extent of the pulmonary edema has not \nsubstantially changed. The lung volumes have slightly \nincreased, likely reflecting improved ventilation. Unchanged \nmoderate cardiomegaly, unchanged position of the left subclavian \nvein catheter. \n\n___: NCHCT: IMPRESSION: \n1. Interval placement of a right frontal approach \nventriculostomy catheter \nending at the foramen ___ with some postsurgical \npneumocephalus. \n2. No significant interval change in the large posterior fossa \nparenchymal hemorrhage and mass effect as described above. \n\n___: Angio:IMPRESSION: angiography and embolization of left \nsuperior cerebellar AVM with Onyx 18 \nFINDINGS: Left vertebral artery arteriogram shows AVM nidus \nmeasuring 2 x 3 x 2 cm located in the superior aspect of the \ncerebellum. \nLeft vertebral artery arteriogram status post embolization shows \nthat there is still minimal flow from the branches of the \nsuperior cerebellar artery and what appears to be a dural branch \nof the left vertebral artery. \n\n___ Angiogram: ***\n\n___: Non constrast head CT:IMPRESSION: \n \n1. Expected postoperative appearance status post occipital \ncraniectomy and resection of left cerebellar AVM with decreased \nbut persistent parenchymal hemorrhage involving the cerebellar \nvermis but no new focus of hemorrhage. \n2. Unchanged mass effect in the posterior fossa with \ncompression of the ___ ventricle and crowding of the foramen \nmagnum. \n\n___: CXR:\nFINDINGS: As compared to the previous radiograph, there is no \nrelevant \nchange. The monitoring and support devices are constant. The \narea of \natelectasis at the bases of the right upper lobe is more \ncircumscribed than before. Mild fluid overload. No pleural \neffusions. No pneumothorax \n\n___: Portable head CT: *****\n\n \n\n \nBrief Hospital Course:\nThe patient presented to the ___ from OSH where she was found \nto be hypertensive and to have a cerebellar hemorrhage, with \nblood in the fourth ventricle, no evidence of hydrocephalus. The \npatient was admited to the neurosurgical service on ___. The \npatient was admitted to NICU. Blood pressure was controlled with \nnicardipine drip, atenolol, lisinopril and hydralazine, \nmaintaining a SBP less than 140. Head CTA was obtained that \nshowed an abnormal tangle of vessels with a large draining vein \nwhich is suspicious for an arteriovenous malformation nidus \nwithin the area of the posterior fossa hemorrhage. The patient \nwas seen by neurology who recommended angiogram given the \npossible AVM. \n\nOn ___ the patient underwent angiogram that showed a 4-cm \narea of tangle of collateral vessels with a nodus in the L \nposterior fossa, predominately feeding from the L PCA, but also \npossibly from the bilateral superior cerebellar arteries. Early \ndraining vein directly into the L transverse sinus. The \nconstellation of findings represents Grade 3 to 4 true \narteriovenous malformation. No feeding vessels arising from the \nexternal carotid artery in either side. The AVM was unable to be \nembolized. The patient was sealed with angioseal. After the \nprocedure that patient was lethargic, however followed \ncommmands. STAT head CT showed increased ventricle size with no \nnew hemorrhge. The patient was taken back to NICU. HOB was flat \n6 hours after the procedure. \n\nOn ___, patient was lethargic, but arousable and following \ncommands. Q1H neuro checks were continued and SBP<140. CT head \nshowed enlarged ventricles. On ___, patient slightly more \nalert, she was able to tolerate a diet. Her neuro checks were \nchanged to Q2H and blood pressure still remains less than 140. \n\nOn ___ the patient went to the OR for EVD placement due to \nobstructive hydrocephalus. The EVD was set at 12. The patient \ntolerated the procedure well. She was taken back to the SICU \npostoperatively. On ___ the patient was started on tube feeds \nand started on Lasix. On ___ the patient remained stable, she \nwas kept NPO after midnight for angio planned for ___. On ___ \nthe patient underwent angiogram with coiling of AVM by Dr. \n___. The patient remained intubated, she was taken the to the \nOR for AVM resection on ___. The patient had an angio \nimmediately following the procedure that showed complete \nresection of AVM. The patient was taken to the SICU \npostoperatively. SBP was kept strict less than 120. The patient \nremained intubated overnight. \n\nOn ___ non contrast head CT showed post operative changes, with \nno new hemorrhage. The tip of the EVD catheter was in the \nforamen ___. EVD was withdrawn 2 cm. Repeat head CT scan \nshowed tip of catheter in right lateral ventricle. EVD continued \nto drain, ICPs averaged ___. EVD was raised to 15. She was \nextubated in the afternoon. She continued to have improvement in \nher exam, moving all extremities purposeful and following \ncommands. \n\nOn ___, The patient's external ventricular drain was raised to \n20 H2Ocm above the tragus. The patient tolerated this well and \nthe patients neurological status was stable.\n\nOn ___, The patient external ventricular drain was clamped and \nthis was tolerated well. The patient surgical incision remained \ndry and intact. The patient's neurologicl status remained \nstable. On exam, the patient opens eyes to voice and was \noriented to name, followed commands consistently in all four \nextremities with 4+ strength.\n\nOn ___, The head CT shows very slightly enlarged ventricles and \nsome draining from External Ventricular Drain site was noted. \nTwo staples placed at insertion site. On exam, The patient \nopened eyes spontaneously and was oriented to person and place. \nThe patient followed commands and moved all extremities with \n4+/5 strength.\n \nOn ___, The External Ventriclar Drain was removed. The wound \nclosed with 2 staples. CSF sent for culture.A&O x1. The \nneurological exam remained stable.\n \nOn ___, LENIS were Negative. The foley and central line were \ndiscontinued. A CXR was stable. The patient demonstrated poor \nability to cough and clear secretions. WBC 14. She underwent a \nspeech and swallow eval, which showed overt aspiration; she was \nmade NPO.\n\nOn ___, General surgery was consulted for a PEG. \n\nOn ___ a Peg was placed by General Surgery and TF were started \non ___ and is tolerating it at goal.\nShe was discharged in a stable condition\n\n \nMedications on Admission:\nAtenolol\nLopid\nLisinopril\n\n \nDischarge Medications:\n1. Acetaminophen-Caff-Butalbital ___ TAB PO Q6H:PRN headache \n2. Docusate Sodium 100 mg PO BID \n3. Gemfibrozil 600 mg PO BID \n4. Heparin 5000 UNIT SC TID \n5. Labetalol 25 mg PO TID \n6. Lisinopril 20 mg PO DAILY \n7. OxycoDONE (Immediate Release) 5 mg PO Q6H:PRN pain \n8. Insulin SC \n Sliding Scale\n\nFingerstick QACHS\nInsulin SC Sliding Scale using REG Insulin\n\n \nDischarge Disposition:\nExtended Care\n \nFacility:\n___\n \nDischarge Diagnosis:\nCerebellar hemorrhage\nAVM\nHydrocephalus\nDyspagia\nDysarthria\n\n \nDischarge Condition:\nstable\n\n \nDischarge Instructions:\n•Take your pain medicine as prescribed.\n•Exercise should be limited to walking; no lifting, straining, \nor excessive bending.\n•Increase your intake of fluids and fiber, as narcotic pain \nmedicine can cause constipation. We generally recommend taking \nan over the counter stool softener, such as Docusate (Colace) \nwhile taking narcotic pain medication.\n•Unless directed by your doctor, do not take any \nanti-inflammatory medicines such as Motrin, Aspirin, Advil, or \nIbuprofen etc. \n•If you were on a medication such as Coumadin (Warfarin), or \nPlavix (clopidogrel), or Aspirin prior to your injury, you may \nsafely resume taking this on ___.\n\nPlease obtain a nutrition consult at the rehab facility for the \nmanagemtn of Tube feeds.\n \nFollowup Instructions:\n___\n\n\n[RADIOLOGY] HISTORY: ___ female with posterior fossa hemorrhage seen on outside\nnoncontrast CT of the head \n\nTECHNIQUE: Contiguous axial images were obtained through the brain initially\nwithout administration of intravenous contrast. Subsequently, helically\nacquired axial images were obtained through the head using a CT protocol after\nthe uneventful administration of 70 cc of Omnipaque intravenous contrast. \nCurved reformats and volume rendered reformations were generated on an\nindependent work station.\n\nCOMPARISON: Comparison is made to noncontrast CT of the head from ___\n___ dated 10:50 am on ___, 3 hours prior.\n\nFINDINGS:\n\nHead CT: There is a large parenchymal hemorrhage centered in the medial left\ncerebellum, measuring approximately 2.8 x 4.3 cm (2:9) which is not\nsignificantly changed in size in comparison to 3 hours prior. There is\nbilateral subdural hemorrhage noted along the tentorium, greater on the right,\nand hemorrhage along the cerebellar folia bilaterally. There is no evidence\nof intraventricular extension of hemorrhage. Compression of the ___ ventricle\nappears increased since the prior study. The lateral ventricles appear mildly\ndilated, but not significantly changed in size since the prior study. The\nbones are unremarkable. The imaged paranasal sinuses and mastoid air cells are\nwell aerated.\n\nHead CTA: In the superior left cerebellum, there is an abnormal tangle of\nvessels with a large draining vein, suspicious for an arteriovenous\nmalformation (3:55). The left superior cerebellar artery is duplicated and\noverall minimally larger than the left, with branches extending to the\npresumed arteriovenous malformation. The left posterior cerebral artery is\nalso enlarged, with a branch extending to the tentorim in the region of the\npresumed arteriovenous malformation. The intracranial vertebral arteries,\nposterior inferior cerebellar arteries, and basilar artery appear\nunremarkable. The cavernous and supraclinoid interal carotid arteries contain\nmild calcifications without evidence of hemodynamically significant stenoses.\nThere is no evidence of an intracranial aneurysm.\n\nIMPRESSION:\n\n1. Large hemorrhage centered in the medial left cerebellum. Slightly increased\ncompression of the ___ ventricle since the previous study from 3 hours\nearlier, with stable mild dilatation of the lateral ventricles. Bilateral\nparatentorial subdural hemorrhage and hemorrhage along the cerebellar folia. \n\n2. Abnormal vessels in the superior left cerebellar hemisphere with a large\ndraining vein, suggesting an arteriovenous malformation, with likely arterial\nsupply from the left superior cerebellar and left posterior cerebral arteries.\nRecommend a conventional cerebral angiogram.\n\nThe above findings were discussed in person with Dr. ___ Neurology by\nDr. ___ Dr. ___ at 15:00 on ___, at the time discovery. \nSubsequently the findings were posted to the online emergency department\ndashboard. \n\nAn addendum to this report may be issued when the 3D reformatted images are\nfinalized by the imaging lab.\n\n\n[RADIOLOGY] INDICATION: ___ year old woman with posterior fossa hemorrhage. CTA head\ndemonstrated a large draining vein in the left posterior fossa, concerning for\narteriovenous malformation.\n\nOPERATORS: Dr. ___ (attending), Dr. ___ (neuroradiology\nfellow), ___ (NP)\n\nPROCEDURES PERFORMED:\n1. Right internal carotid arteriography.\n2. Right common carotid arteriography.\n3. Left internal carotid arteriography.\n4. Left common carotid arteriography.\n5. Left vertebral arteriography.\n6. Right vertebral arteriography. \n\nCOMPARISON IMAGING: CTA Head ___.\n \nANESTHESIA: General anesthesia with intubation.\n\nDETAILS OF PROCEDURE:\n\nAfter explanation of the risks, benefits and alternative of the procedure to\nthe patient and husband at bedside, written informed consent was obtained from\nthe husband. The patient was brought to the angiography suite. A\npre-procedure 'timeout' was performed per standard ___ protocol. Following\nthis, both groins were prepped and draped in usual sterile fashion.\n\nAccess was gained to the right femoral artery with a 5 ___ single-wall\nneedle. An 0.035 ___ wire was advanced to descending aorta under\nfluoroscopic observation, and a 4 ___ short sheath placed. Thereafter,\naccess to the right common and internal carotid arteries, left common and\ninternal carotid arteres, left and right vertebral arteries, was obtained. \nDynamic angiographic images were acquired. Dedicated volumetric CT images\nwere obtained centered at the left posterior fossa \n\nThereafter, the wires and catheters were removed. The sheath was then removed\nand manual pressure held at the arteriotomy site for 15 minutes. Excellent\nhemostasis was achieved and a sterile dressing was applied. The patient left\nthe angiography suite in stable condition.\n\nFINDINGS:\n\nRIGHT INTERNAL CAROTID ARTERY: The right ICA is normal in caliber and\nbranching pattern. There is no aneurysm or significant stenosis. There is a\nrobust right posterior communicating artery. \n\nRIGHT COMMON AND EXTERNAL CAROTID ARTERY: The right CCA and ECA are normal in\ncaliber and branching pattern. There is no aneurysm or significant stenosis. \nThere is no evidence of abnormal feeding vessel arising directly from the\nright CCA/ECA to the left posterior fossa AVM. \n\nLEFT INTERNAL CAROTID ARTERY: The left ICA is normal in caliber and branching\npattern. There is no aneurysm or significant stenosis. The left posterior\ncommunicating artery is hypoplastic. \n\nLEFT COMMON AND EXTERNAL CAROTID ARTERY: The left CCA and ECA are normal in\ncaliber and branching pattern. There is no aneurysm or significant stenosis. \nThere is no evidence of abnormal feeding vessel arising directly from the left\nCCA/ECA to the left posterior fossa AVM. \n\nLEFT VERTEBRAL ARTERY: The left vertebral artery and the basilar artery are\nnormal in caliber. Sequential angiographic images demonstrate filling of a\n4-cm area of tangled collateral vessels in the left posterior fossa. The\nfeeding vessels are predominately from the left posterior cerebral artery,\nwith possibly smaller feeding vessels from the superior cerebellar arteries\nbilaterally. There is early venous drainage directly into the adjacent left\ntransverse sinus.\n\nRIGHT VERTEBRAL ARTERY: The right vertebral artery and the basilar artery are\nnormal in caliber. Angiographic images demonstrate identical filling and\ndraining pattern of the left posterior fossa arteriovenous malformation, as\nalready described the LEFT VERTEBRAL ARTERY section. No additional feeding\nvessel is identified arising directly from the right vertebral artery.\n\nIMPRESSION: ___ underwent cerebral angiography revealing:\n\n1. A 4-cm area of tangled collateral vessels with a nidus in the left\nposterior fossa, predominately feeding from the left posterior cerebral\nartery, but also possibly from the bilateral superior cerebellar arteries. \nEarly draining vein directly into the left transverse sinus. The\nconstellation of findings represents arteriovenous malformation.The\nmalformation measures aaproximately 4 cms in diameter. \n\n2. No feeding vessels arising from the external carotid artery in either\nside.\n\n\n\n[RADIOLOGY] HISTORY: Patient with posterior fossa hemorrhage likely secondary to\narteriovenous malformation status post diagnostic angiography.\n\nTECHNIQUE: Axial images of the head were obtained without contrast.\n\nCOMPARISON: Comparison was made with the CTA examination of ___ and\ncerebral angiography of ___.\n\nFINDINGS:\n\nAgain identified is a cerebellar hemorrhage in the region of vermis which\nextends to the adjacent subdural space. There is mass effect on the ___\nventricle. There is ventricular dilatation which appears to have slightly\nincreased from the prior study. There is contrast visualized within the\nvascular structures from recent angiography. There is no area of loss of\ngray-white matter differentiation seen. Artifacts limit evaluation in the\noccipital region.\n\nIMPRESSION:\n\nUnchanged appearance of the posterior fossa hemorrhage. Slight increase in\nventricular size.\n\n\n\n[RADIOLOGY] INDICATION: Patient with posterior fossa hemorrhage. Assess for interval\nchange.\n\nCOMPARISONS: NECTs of ___ (6.5 hours earlier), ___.\n\nTECHNIQUE: MDCT-acquired contiguous images through the head were obtained\nwithout intravenous contrast at 5-mm section thickness. Coronally and\nsagittally reformatted images are provided. The initial attempts were\nsubstantially motion-degraded; the third effort is of diagnostic quality.\n\nFINDINGS: There is a large parenchymal hemorrhage, centered at the level of\nthe cerebellar vermis, which has not significantly changed in extent since\nstudy obtained 6.5 hours prior. There is persistent adjacent edema and mass\neffect on the fourth ventricle., which appears compressed, unchanged since\nprior. Blood products are also seen layering along the tentorium cerebelli\nand cerebellar folia. The lateral and third ventricles are minimally\nincreased in size since prior. The temporal horns appear dilated, as before. \nThe perimesencephalic cisterns are effaced. The suprasellar cisterns remain\npatent. No vascular territorial infarction is noted. There is no shift of\nnormally midline structures. Imaged paranasal sinuses and mastoid air cells\nare well aerated. The orbits are unremarkable. No acute fracture is\ndetected.\n\nIMPRESSION: In comparison to study obtained 6.5 hours prior, there is no\nsignificant change in the extenisve posterior fossa hemorrhage as described\nabove. There is persistent adjacent edema and mass effect on the fourth\nventricle. There is minimal increase in size of the lateral and third\nventricles since prior exam. No new focus of acute intracranial hemorrhage.\n\nNOTE ADDED IN ATTENDING REVIEW: There is both an intra- and an extra-axial\ncomponent to the posterior fossa hemorrhage; as above, the blood and\nsurrounding edema exert significant mass effect, with both upward\ntranstentorial and cerebellar tonsillar herniation. There is effacement of the\n___ ventricle with obstructive hydrocephalus and early transependymal\nmigration of CSF. These findings have progressed significantly since the\noriginal (___) NECT of 10:50, ___.\n\n\n[RADIOLOGY] HISTORY: Posterior fossa arterial venous malformation with hemorrhage. \nEvaluate for interval change.\n\nTECHNIQUE: Sequential axial images were acquired through the head without\nadministration of intravenous contrast material. Multiplanar reformats were\nperformed.\n\nCOMPARISON: Multiple prior CT studies dating back through ___,\nincluding the most recent study from ___.\n\nFINDINGS:\n\nThere is redemonstration of a large parenchymal hemorrhage centered in the\ncerebellar vermis, causing compression of the ___ ventricle, similar in\nappearance compared to the prior study from approximately 6 hours ago. \nHemorrhagic material is also seen layering over the tentorium cerebelli and\ncerebellar folia, not significantly changed. Dilatation of the ___ ventricle\nand lateral ventricles is not significantly changed compared to the most\nrecent CT from ___, although has increased compared to the earliest\navailable CT from ___. The cerebellar tonsils protrude inferiorly\ninto the foramen magnum (9:1), similar in appearance to the CTs of ___. The perimesencephalic cisterns remain effaced, while the suprasellar\ncistern is preserved. There is no new intracranial hemorrhage or evidence of\nacute large vascular territorial infarction. Periventricular white matter\nhypodensities have progressed since the earliest available CT from ___, although are similar in appearance compared to the most recent study\nfrom ___, concerning for transependymal flow of CSF relating to\nobstructive hydrocephalus. The orbits are unremarkable. The imaged portions\nof the paranasal sinuses and mastoid air cells are well aerated.\n\nIMPRESSION:\n\n1. No significant short-interval change in the large posterior fossa\nparenchymal hemorrhage, with blood layering over the tentorium cerebelli\nand/or the cerebellar folia.\n\n2. Stable enlargement of the ___ and lateral ventricles, compared to the most\nrecent study from approximately 6 hours ago, though the degree of ventricular\ndilatation has substantially increased compared to the earliest available\nstudy from ___. Increased periventricular white matter hypodensity\nis concerning for transependymal CSF flow due to obstructive hydrocephalus.\n\n3. No new intracranial hemorrhage or acute large vascular territorial\ninfarction.\n\nCOMMENT: Pertinent findings were discussed with Dr. ___ (Neurosurgery\nservice), by Dr. ___ telephone, at 05:25 AM on ___. \n\n\n\n[RADIOLOGY] HISTORY: ___ female with posterior fossa hemorrhage here for\nassessment of line placement.\n\nCOMPARISON: ___.\n\nFINDINGS: Single frontal view of the chest demonstrates a new left subclavian\napproach central venous catheter with tip projecting over the upper SVC. \nThere is no appreciable pneumothorax. Lung volumes are decreased as compared\nto 2 days prior, with increased perihilar vascular congestion and mild\npulmonary edema. There is mild cardiomegaly. There may be a small left\npleural effusion.\n \n\nIMPRESSION: \n\n1. Left subclavian central venous catheter appropriate in position, without\npneumothorax. \n\n2. Mild pulmonary edema.\n\n\n\n[RADIOLOGY] CHEST RADIOGRAPH\n\nINDICATION: Posterior fossa hemorrhage, pulmonary edema, evaluation for\ninterval change.\n\nCOMPARISON: ___.\n\nFINDINGS: As compared to the previous radiograph, the severity and extent of\nthe pulmonary edema has not substantially changed. The lung volumes have\nslightly increased, likely reflecting improved ventilation. Unchanged\nmoderate cardiomegaly, unchanged position of the left subclavian vein\ncatheter.\n\n\n[RADIOLOGY] HISTORY: ___ y/o F with posterior fossa hemorrhage, likely secondary to\nruptured AVM. Evaluate for interval change, as patient has increased\nsomnolence and is disoriented.\n\nTECHNIQUE: Sequential axial images were acquired through the head without\nadministration of intravenous contrast material. \n\nCOMPARISON: Multiple prior CT studies, most recent on ___.\n\nDLP: 1410.36 mGy-cm\nCTDI: 58.56 mGy\n\nFINDINGS:\n\nThere is no significant interval change in large parenchymal hemorrhage\ncentered in the cerebellar vermis, causing compression of the ___ ventricle.\nPeripheral edema is slightly more conspicuous than in prior. Hemorrhagic\nmaterial is also seen layering over the tentorium cerebelli and cerebellar\nfolia, not significantly changed. Dilatation of the ___ ventricle and lateral\nventricles as well as protrusion of the cerebellar tonsils into the foramen\nmagnum have increased compared with prior. The perimesencephalic cisterns\nremain effaced, while the suprasellar cistern is preserved. \n\nThere is no new hemorrhage and no evidence of infarction. Periventricular\nwhite matter hypodensities are similar in appearance to prior exam. The\norbits are unremarkable. The imaged portions of the paranasal sinuses and\nmastoid air cells are well aerated.\n\nIMPRESSION:\n\n1. No significant interval change in the large posterior fossa parenchymal\nhemorrhage, with blood layering over the tentorium cerebelli and cerebellar\nfolia.\n\n2. Stable enlargement of the ___ and lateral ventricles, effacement of the\nperimesencephalic cisterns and cerebellar tonsils protrusion into the foramen\nmagnum. \n\n\n\n\n[RADIOLOGY] CHEST RADIOGRAPH\n\nINDICATION: Nasogastric tube placement.\n\nCOMPARISON: ___, 4:41 a.m.\n\nFINDINGS: As compared to the previous radiograph, the patient has received a\nnasogastric tube. The course of the tube is unremarkable, the tip of the tube\nprojects over the middle parts of the stomach. There is no evidence of\ncomplications. Otherwise, unchanged radiograph with moderate pulmonary edema,\nlarge right hilus and moderate cardiomegaly as well as an unchanged position\nof the left subclavian vein catheter.\n\n\n[RADIOLOGY] HISTORY: ___ y/o F with posterior fossa hemmorhage, likely secondary to\nruptured AVM s/p ventriculostomy catheter placement.\n\nTECHNIQUE: Sequential axial images were acquired through the head without\nadministration of intravenous contrast material. \n\nCOMPARISON: Multiple prior CT studies, most recent performed today prior to\nprocedure.\n\nDLP: 1048.01 mGy-cm\nCTDI: 65.98 mGy\n\nFINDINGS:\n\nThere has been interval placement of a right frontal approach ventriculostomy\ncatheter with some pneumocephalus but no blood product noted in the\ncraniostomy site or along the course of the cathter, which ends at the foramen\nof ___.\n\nOtherwise, there is no significant interval change in large parenchymal\nhemorrhage centered in the cerebellar vermis with surrounding edema with\nassociated hemorrhagic material layering over the tentorium cerebelli and\ncerebellar folia. Mass effect in the form of compression of the ___\nventricle, dilatation of the ___ ventricle and lateral ventricles, protrusion\nof the cerebellar tonsils into the foramen magnum and effacement of the\nperimesencephalic cisterns are unchanged. \n\nThere is no evidence of new hemorrhage. The imaged portions of the paranasal\nsinuses and mastoid air cells are well aerated.\n\nIMPRESSION:\n\n1. Interval placement of a right frontal approach ventriculostomy catheter\nending at the foramen ___ with some postsurgical pneumocephalus.\n\n2. No significant interval change in the large posterior fossa parenchymal\nhemorrhage and mass effect as described above. \n\n\n[RADIOLOGY] CHEST RADIOGRAPH\n\nINDICATION: Cerebral hemorrhage, evaluation.\n\nCOMPARISON: ___, 4:05 p.m.\n\nFINDINGS: As compared to the previous radiograph, there is no relevant\nchange. Moderate pulmonary edema. Left lower lobe atelectasis, mild\ncardiomegaly. No abnormalities with regard to the positions of the left\nsubclavian vein catheter and the nasogastric tube.\n\n\n[RADIOLOGY] ANGIO REPORT\n\nDATE OF SERVICE: ___.\n\nPROCEDURES PERFORMED:\n1. Left vertebral artery arteriogram.\n2. Embolization of left superior cerebellar AVM with Onyx 18.\n\nANESTHESIA: General.\n\nINDICATION: The patient had presented with a cerebellar hemorrhage from a\nruptured arteriovenous malformation primarily fed by branches of the superior\ncerebellar artery. Therefore, after discussing the risks and benefits with\nhusband, we decided to proceed with an angiogram and possible embolization.\n\nDETAILS OF PROCEDURE: Patient was brought to the angiography suite. IV\nanesthesia was induced in the supine position. Following this both groins\nwere prepped and draped in a sterile fashion. Access was gained to the right\ncommon femoral artery using a Seldinger technique and a 6 ___ vascular\nsheath was placed in the right common femoral artery. We now catheterized the\nleft vertebral artery and AP lateral filming was done. We now exchanged out\nthe ___ 2 catheter in the left vertebral artery for a Neuron 6 ___ 070\ncatheter. This was continued to connect to a continuous saline flush. \nFollowing this, 036 DAC catheter was placed in the distal left vertebral\nartery and through this the superior cerebellar artery branches were\ncatheterized with a Synchro wire and SL-10 microcatheter. We injected two\npedicles with Onyx 18 to obtain a fairly good cast of the AVM with very\nminimal residual AVM; however the draining vein was still apparent at the end\nof the procedure.\n\nThe vascular sheath was left in place and during the procedure patient was\nanticoagulated with an ACD of 206.\n\nFINDINGS: Left vertebral artery arteriogram shows AVM nidus measuring 2 x 3 x\n2 cm located in the superior aspect of the cerebellum.\n\nLeft vertebral artery arteriogram status post embolization shows that there is\nstill minimal flow from the branches of the superior cerebellar artery and\nwhat appears to be a dural branch of the left vertebral artery.\n\nIMPRESSION: ___ underwent cerebellar angiography and embolization\nof left superior cerebellar AVM with Onyx 18.\n\n\n[RADIOLOGY] REASON FOR EXAMINATION: Evaluation of the patient with posterior fossa\nhemorrhage and recently intubated.\n\nPortable AP radiograph of the chest was reviewed on ___.\n\nThe ET tube tip is 2.3 cm above the carina. The left subclavian line tip is\nat the junction of brachiocephalic vein and SVC. Heart size and mediastinum\nare unchanged. There is interval improvement of pulmonary edema.\n\n\n[RADIOLOGY] HISTORY:\n\nPatient is status post embolization and surgery, removal of AV malformation in\nthe posterior fossa on the left. The patient is here for a followup\nangiogram.\n\nTechnique:\nThe patient was brought to the fluoroscopic suite and placed on the table in\nthe supine position. \nThe right groin was prepped and draped in the usual sterile fashion. Access to\nthe right common femoral artery was obtained using a 19 gauge needle using\nseldinger technique. A ___ Fr sheath and ___ Fr Berenstein 2 catheter was used to\nselect the left vertebral artery.\n\nLEFT VERTEBRAL ARTERY:\n\nEvaluation of the left vertebral artery demonstrates good flow in the proximal\nand distal left vertebral artery, posterior cerebral arteries and superior\ncerebellar arteries bilaterally. No definite residual arteriovenous\nmalformation noted.\n\nIMPRESSION:\nSuccessful resection of the previously known arteriovenous malformation in the\nposterior fossa on the left. No definite residual arteriovenous malformation\nnoted.\n\n\n[RADIOLOGY] CHEST RADIOGRAPH\n\nINDICATION: Posterior fossa hemorrhage, evaluation for interval change.\n\nCOMPARISON: ___.\n\nFINDINGS: As compared to the previous radiograph, there is no relevant\nchange. The monitoring and support devices are constant. The area of\natelectasis at the bases of the right upper lobe is more circumscribed than\nbefore. Mild fluid overload. No pleural effusions. No pneumothorax.\n\n\n[RADIOLOGY] HISTORY: Posterior fossa AVM complicated by acute hemorrhage status post onyx\nembolization and recent resection, here to evaluate for interval changes. \n\nCOMPARISON: None contrast head CT dated ___. Cerebral angiogram\ndated ___ and ___. \n\nTechnique: Multi detector CT imaging of the head was performed without\nintravenous contrast. Coronal and sagittal reformatted images as well as thin\nsection images in bone window algorithm were generated and reviewed. \n\nFINDINGS:\n\nThe patient is status post occipital craniectomy with overlying metallic mesh\nand expected postoperative changes including left posterior fossa\npneumocephalus. Onyx embolization material is noted in the left superior\ncerebellar hemisphere compatible with recent embolization of bleeding AVM. \nResidual hyperdense blood products are again seen centered in the cerebellar\nvermis compatible with parenchymal hemorrhage, decreased in extent compared to\nthe prior CT of ___. No new focus of hemorrhage is detected. There\nis unchanged associated mass effect with compression of the ___ ventricle and\ncrowding of the foramen magnum effacing the perimesencephalic cisterns, which\nis unchanged. \n\nA right frontal approach ventriculostomy catheter is unchanged in position\nwith the tip terminating at the foramen of ___. The gray-white matter\ninterface is relatively preserved without evidence of acute major vascular\nterritorial infarct. Mild mucosal thickening is noted in the bilateral\nmaxillary sinuses. There is near complete opacification of the right ethmoid\nair cells greater than the left. Mucosal thickening in the bilateral sphenoid\nsinuses is also noted with an air-fluid level in the right sphenoid sinus. \nThe mastoid air cells and middle ear cavities are clear bilaterally. Vascular\ncalcification in the carotid siphons is noted. \n\nIMPRESSION:\n\n1. Expected postoperative appearance status post occipital craniectomy and\nresection of left cerebellar AVM with decreased but persistent parenchymal\nhemorrhage involving the cerebellar vermis but no new focus of hemorrhage. \n\n2. Unchanged mass effect in the posterior fossa with compression of the ___\nventricle and crowding of the foramen magnum. \n\n\n\n[RADIOLOGY] HISTORY: Status post left cerebellar AVM resection with EVD pulled back. \nEvaluate for interval change.\n\nTECHNIQUE: Contiguous axial helical MDCT images were obtained of the brain\nwithout contrast.\n\nDLP: 113___.65 mGy-cm.\n\nCOMPARISON: Noncontrast head CT ___.\n\nFINDINGS:\n\nThe patient is status post occipital craniectomy with resection of left\ncerebellar AVM with mesh placement. Unchanged postoperative changes are noted\nincluding mild posterior fossa pneumocephalus, residual Onyx embolization\nmaterial, and residual hyperdense blood products in the cerebellar vermis\nwithout new hemorrhage identified. There has been interval partial withdrawal\nof the right frontal approach ventriculostomy catheter which now terminates in\nthe anterior horn of the right lateral ventricle. Overall ventricular size is\nmildly decreased compared to prior study when taking into account the plane of\nthe scan. Local mass-effect obliterating the ___ ventricle and effacing the\nperimesencephalic cisterns is unchanged from prior study. Mucosal wall\nthickening is again noted in the right maxillary sinus and ethmoid air cells\nalong with air-fluid level in the right sphenoid sinus. The mastoid air cells\nand middle ear cavities are well aerated. Atherosclerotic mural\ncalcifications are noted in the carotid siphons.\n\nIMPRESSION:\n\nPartial withdrawal of the right frontal approach ventriculostomy catheter with\nthe tip terminating in the anterior horn of the right lateral ventricle with\nminimal decrease in size of ventricles. Otherwise no significant change\ncompared to exam from 9 hours prior.\n\n\n\n[RADIOLOGY] CHEST RADIOGRAPH\n\nINDICATION: Posterior fossa hemorrhage, evaluation for nasogastric tube\nposition.\n\nFINDINGS: As compared to the previous radiograph, the nasogastric tube has\nbeen advanced. The tip is difficult to visualize but appears to project over\nthe distal parts of the stomach. The other monitoring and support devices are\nin constant position. Moderate cardiomegaly, endotracheal tube in situ. \nUnchanged position of the left subclavian catheter. The pre-existing disease\nat the bases of the right upper lobe has resolved in the interval.\n\n\n[RADIOLOGY] PORTABLE AP CHEST X-RAY\n\nINDICATION: Patient with posterior fossa hemorrhage, AVN coil, rule out acute\nchange.\n\nCOMPARISON: ___.\n\nFINDINGS:\n\nPatient has been extubated. Left lung increased opacification is accompanied\nwith shift of the mediastinum. NG tube is in adequate position and left\nsubclavian line ends at the junction of the brachiocephalic vein and superior\nvena cava. There is no pneumothorax.\n\nCONCLUSION:\n\n1. Patient has been extubated.\n2. New left lung opacification and mediastinal shift is probably explained by\npartial lung collapse due to mucus plugging.\n\n\n[RADIOLOGY] PORTABLE AP CHEST X-RAY\n\nINDICATION: Patient with posterior fossa hemorrhage.\n\nCOMPARISON: ___, at 20:22.\n\nFINDINGS:\n\nLeft lung atelectasis has significantly improved with only minimal residual\nvolume loss at the lung base. Mild pulmonary congestion is unchanged. Left\nsubclavian line ends at the junction of superior vena cava and brachiocephalic\nvein. There is no pneumothorax. Bilateral pleural effusions are small.\n\nCONCLUSION:\n\n1. Significant improvement of left lung atelectasis.\n2. Unchanged mild pulmonary edema.\n\n\n[RADIOLOGY] HISTORY: NG tube placement.\n\nFINDINGS: In comparison with the study of ___, the nasogastric tube extends\nto the lower stomach, where it crosses the lower margin of the image. The\ndegree of pulmonary vascular congestion has decreased. Mild residual\natelectasis at the left base.\n\n\n[RADIOLOGY] PORTABLE CHEST, ___\n\nCOMPARISON: ___ radiograph.\n\nFINDINGS: Cardiomediastinal contours are stable in appearance. Persistent\npatchy and linear atelectasis at left lung base with otherwise clear lungs.\n\n\n[RADIOLOGY] CHEST RADIOGRAPH\n\nINDICATION: Foci of hemorrhage, evaluation for interval change.\n\nCOMPARISON: ___.\n\nFINDINGS: As compared to the previous radiograph, there is no relevant\nchange. Mild cardiomegaly with mild fluid overload but no evidence of\npneumonia or overt pulmonary edema. No pleural effusions. No evidence of\npneumonia. The monitoring and support devices are in constant position.\n\n\n[RADIOLOGY] EXAM: CT of the head.\n\nCLINICAL INFORMATION: Patient with posterior fossa hemorrhage, for further\nevaluation.\n\nTECHNIQUE: Axial images of the head were obtained without contrast and\ncompared with prior CT of ___.\n\nFINDINGS: There has been interval change in the position of the frontal\ndrain. It now ends in the anterior horn of the right lateral ventricle. \nThere is mild prominence of ventricles which is unchanged. Extensive\nposterior fossa clips and embolization material is identified as well as\ncranioplasty is seen. The previously seen hemorrhage has decreased in size\nbut a small area of hyperdensity is seen in the midline. There remains some\ncompression of the fourth ventricle. There is no definite new hemorrhage\nseen. The basal cisterns remain patent, but the quadrigeminal cistern is\nstill not clearly visualized. Extensive soft tissue changes are seen\npredominantly in the right sphenoid sinus as before.\n\nIMPRESSION: Mild ventriculomegaly, unchanged from prior study, but the\nventricular catheter tip has now changed into the anterior horn of the right\nlateral ventricle. Further evaluation of posterior fossa blood products with\nstill a small area of high density is seen in the midline, but no new\nhemorrhage. Post-embolization and surgical changes are seen in the posterior\nfossa as before.\n\n\n[RADIOLOGY] HISTORY: Posterior fossa hemorrhage secondary to arteriovenous malformation\nstatus post coiling.\n\nTECHNIQUE: Contiguous axial MDCT images of the head were obtained without\ncontrast.\n\nDLP: ___.\n\nCOMPARISON: Multiple noncontrast head CTs ranging from ___.\n\nFINDINGS:\n\nThere has been no significant interval change compared to ___ with re-\ndemonstration of a postprocedural change from posterior cranioplasty and the\nmultiple posterior fossa surgical clips and embolization material. A small\narea of hyperattenuating material is again noted in the midline adjacent to\nthe embolization site. The ventriculostomy catheter remains in the frontal\nhorn of the right lateral ventricle where unchanged size and configuration of\nthe ventricles. Effacement of the ___ ventricle from edema is unchanged. \nSurrounding edema is causing unchanged upward herniation of the cerebellum\nwith effacement of the quadrigeminal cistern. Fluid levels in the right\nsphenoid air cell is unchanged. Mucosal wall thickening is noted in bilateral\nmaxillary sinuses. The mastoid air cells and middle ear cavities are clear.\n\nIMPRESSION:\n\nNo significant change compared to ___ with stable post embolization and\nsurgical changes of posterior fossa with surrounding unchanged blood products\nand stable configuration of the ventricles.\n\n\n\n[RADIOLOGY] INDICATION: ___ female patient with posterior fossa hemorrhage. \nStudy requested for evaluation of interval change.\n\nCOMPARISON: Prior chest radiograph from ___.\n\nTECHNIQUE: Portable erect AP chest radiograph.\n\nFINDINGS: A left subclavian catheter line is seen projecting within the SVC.\nA nasogastric tube projects over the gastric fundus. As compared to most\nrecent prior exam, there has been no significant change. There is stable mild\ncardiomegaly. There is no evidence of pneumonia. There are no pleural\neffusions or pneumothorax.\n\nIMPRESSION: Stable chest examination with no evidence of pneumonia.\n\n\n[RADIOLOGY] HISTORY: ___ female status post arm embolization with prolonged bed\nrest. Evaluate for DVT in either leg.\n\nCOMPARISON: No previous exam for comparison.\n\nFINDINGS:\n\nGrayscale, color and Doppler images were obtained of bilateral common femoral,\nfemoral, popliteal and tibial veins. Normal flow, compression and\naugmentation is seen in all of the vessels.\n\nIMPRESSION:\n\nNo evidence of deep vein thrombosis in either leg.\n\n\n\n[RADIOLOGY] SINGLE FRONTAL VIEW OF THE CHEST\n\nREASON FOR EXAM: posterior fossa hemorrhage secondary to AVM.\n\nComparison is made with prior study ___.\n\nCardiomegaly is stable. NG tube tip is in the stomach and the tip is coiled\nin the stomach. The lungs are clear. There is no evidence of pulmonary\nedema, pneumothorax or pleural effusion.\n\n\n[RADIOLOGY] HISTORY: Posterior fossa hemorrhage secondary to AVM status post surgery and\nembolization.\n\nTECHNIQUE: Portable CT images were obtained of the head without contrast.\n\nDLP 1131.65 mGy-cm.\n\nCOMPARISON: Multiple noncontrast head CTs dating back to ___.\n\nFINDINGS:\n\nWhen serial exams are compared dating back to ___, there appears to be\nslight, progressive inward bending of the cranial mesh presenting a degree of\nlocal mass effect. There has been interval withdrawal of a right frontal\napproach ventriculostomy catheter and the ventricular size and configuration\nremains unchanged. There is otherwise no significant change compared to ___ with redemonstrations of postprocedural changes in the posterior fossa as\nwell as an unchanged amount of blood products Degree of posterior fossa edema\nis unchanged causing upward herniation of the cerebellum with effacement of\nthe quadrigeminal cistern and ___ ventricle. No new bleed or vascular\nterritory infarct is identified. Fluid levels in the right sphenoid air cell\nis unchanged. Mucosal wall thickening is noted in bilateral maxillary\nsinuses.\n\nIMPRESSION:\n\nSerial comparison of studies from ___ shows progressive inward bending of\nthe cranial mesh into the posterior fossa presenting some degree of mass\neffect. Interval withdrawal of ventriculostomy catheter. Otherwise no\nsignificant change compared to ___.\n\n\n\n[RADIOLOGY] INDICATION: ___ female patient with posterior fossa hemorrhage, AVM,\nstatus post coil. Study requested for evaluation of edema, consolidation\nand/or interval change.\n\nCOMPARISON: Prior chest radiograph from ___.\n\nTECHNIQUE: Portable semi-erect AP chest radiograph.\n\nFINDINGS: As compared to prior chest radiograph from ___, lung\nvolumes have decreased accentuating the cardiac silhouette and bronchovascular\nstructures. No focal consolidations concerning for pnuemonia are identified.\nThere is no pulmonary edema, pleural effusions or pneumothorax. \n\nIMPRESSION: No radiographic evidence of an acute cardiopulmonary process.\n\n\n[RADIOLOGY] HISTORY: Status post left suboccipital craniotomy and resection of\narteriovenous malformation.\n\nTECHNIQUE: Contiguous axial MDCT images were obtained of the head without\ncontrast.\n\nDLP: 780.44 mGy-cm.\n\nCOMPARISON: Noncontrast head CT ___.\n\nFINDINGS:\n\nAgain appreciated ia hyperdense Onyx embolization products in the left\noccipital lobe from prior arteriovenous malformation embolization. The\npatient is status post left suboccipital craniectomy with a resection of the\nAVM and placement of a cranial mesh. Compared to prior study the cranial mesh\nappears more straight and is no longer bowing into the surrounding brain\nparenchyma. There has been interval resolution of surrounding cerebellar and\noccipital parenchymal edema surrounding the resection bed. There has been\nresolution of postsurgical blood products as well. There is no edema, mass\neffect, hemorrhage or major territorial infarct. Prominent ventricles and\nsulci are suggestive of age-related involutional change. The overall size and\nconfiguration of the ventricles is unchanged. Areas of periventricular,\nsubcortical and deep white matter hypodensity is compatible with chronic small\nvessel ischemic disease. And the basal cisterns are patent and there is\npreservation of gray-white matter differentiation. No fracture is identified.\nThere is redemonstration of mucosal wall thickening in the right sphenoid air\ncell however the fluid opacification of the ethmoid air cells has improved. \nThe middle ear cavities and mastoid air cells are clear. The globes are\nunremarkable.\n\nIMPRESSION:\n\nStatus post resection of left occipital arteriovenous malformation with\nassociated postoperative change and residual Onyx embolization material. \nThere has been interval resolution of blood products in the resection bed as\nwell as the surrounding edema. The overlying cranial mesh appears in adequate\nposition and it no longer bows into the parenchyma.\n\n\n\n[RADIOLOGY] HISTORY: ___ woman status post left suboccipital craniotomy for\nresection of cerebral arteriovenous malformation. Assess for change.\n\nTECHNIQUE: Contiguous axial MDCT images were obtained through the brain\nwithout administration of IV contrast.\n\nCOMPARISON: Multiple nonenhanced CT scans of the head dated ___ and\n___.\n\nTotal DLP: 780.44 mGy/cm\n\nCTDIvol: 52.22 mGy\n\nFINDINGS:\n\nThe again appreciated are hyperdense embolization products in the left\noccipital lobe from prior AV malformation embolization. There is a large\namount of streak artifact present within this region. Assessment of evolution\nof AVM is limited based on both the degree of streak artifact present, as well\nas the lack of IV contrast. The patient is status post left suboccipital\ncraniectomy with resection of the AVM and placement of cranial mesh, which\nappears unchanged from prior study. A right-sided fronto-temporal burr hole\nis again noted. \n\nThere is no edema, mass effect, hemorrhage, or large vascular territory\ninfarction. Again noted are slightly prominent ventricles and sulci,\nsuggestive of age-related involutional change. There are stable areas of\nperiventricular white matter hypodensities, consistent with chronic small\nvessel ischemic disease. The basal cisterns appear patent and there is\npreservation of gray-white matter differentiation. The visualized paranasal\nsinuses, and mastoid air cells, and middle ear cavities are clear. The globes\nare unremarkable.\n\nIMPRESSION:\n\nNo acute intracranial process.",
6
+ "ai_summary": "**Patient's Preoperative Status Summary**\n\n**Demographics:**\n\n* Age: 66 years\n* Gender: Female\n* Race: White\n* Admission Type: Emergency\n* Insurance: Medicare\n\n**Comorbidities:**\n\n1. Hypertension (HTN)\n2. Coronary artery disease (not explicitly stated, but implied by the presence of multiple medications)\n3. Diabetes (not explicitly stated, but implied by the presence of medications)\n4. Chronic kidney disease (CKD) (not explicitly stated, but implied by the presence of medications)\n5. Hyperlipidemia (not explicitly stated, but implied by the presence of medications)\n6. Chronic obstructive pulmonary disease (COPD) (not explicitly stated, but implied by the presence of medications)\n7. Atrial fibrillation (not explicitly stated, but implied by the presence of medications)\n8. Chronic obstructive pulmonary disease (COPD) (not explicitly stated, but implied by the presence of medications)\n9. Chronic kidney disease (CKD) (not explicitly stated, but implied by the presence of medications)\n10. Hyperlipidemia (not explicitly stated, but implied by the presence of medications)\n11. Atrial fibrillation (not explicitly stated, but implied by the presence of medications)\n12. Chronic obstructive pulmonary disease (COPD) (not explicitly stated, but implied by the presence of medications)\n\n**Medications:**\n\n1. Atenolol (beta-blocker)\n2. Lisinopril (ACE inhibitor)\n3. Lisinopril (ACE inhibitor)\n4. Hydralazine (antihypertensive)\n5. Nicardipine (antihypertensive)\n6. OxyContin (opioid analgesic)\n7. Insulin (glucose-lowering)\n8. Gemfibrozil (lipid-lowering)\n9. Docusate (stool softener)\n10. Lasix (diuretic)\n\n**Lab Results:**\n\n1. WBC: 16.2 (elevated)\n2. RBC: 4.53 (mildly decreased)\n3. Hgb: 14.5 (mildly decreased)\n4. Hct: 43.2 (mildly decreased)\n5. MCV: 95 (normal)\n6. MCH: 32.0 (normal)\n7. MCHC: 33.6 (normal)\n8. RDW: 13.3 (normal)\n9. Plt: Not provided (not available)\n\n**Imaging Results:**\n\n1. CTA head:\n\t* Large hemorrhage centered in the medial left cerebellum\n\t* Slightly increased compression of the third ventricle\n\t* Bilateral paratentorial subdural hemorrhage and hemorrhage along the cerebellar folia\n\t* Abnormal vessels in the superior left cerebellar hemisphere with a large draining vein, suggesting an arteriovenous malformation (AVM)\n2. Angiogram:\n\t* A 4-cm area of tangled collateral vessels with a nodus in the left posterior fossa, predominately feeding from the left posterior cerebral artery, but also possibly from the bilateral superior cerebellar arteries\n\t* Early draining vein directly into the left transverse sinus\n3. CT head without contrast:\n\t* Unchanged appearance of the posterior fossa hemorrhage\n\t* Slight increase in ventricular size\n\t* Increased periventricular white matter hypodensity is concerning for transependymal CSF flow due to obstructive hydrocephalus\n4. CTA head:\n\t* Large hemorrhage centered in the medial left cerebellum\n\t* Slightly increased compression of the third ventricle\n\t* Bilateral paratentorial subdural hemorrhage and hemorrhage along the cerebellar fol",
7
+ "overall_rating": 2,
8
+ "feedback": "1",
9
+ "categories": {
10
+ "medical_accuracy": 3,
11
+ "clinical_relevance": 3,
12
+ "completeness": 3,
13
+ "clarity": 3
14
+ },
15
+ "sentence_comments": []
16
+ }
patient_evaluations/patient_evaluations_master.csv CHANGED
@@ -1,2 +1,6 @@
1
  timestamp,patient_id,expert_name,overall_rating,medical_accuracy,clinical_relevance,completeness,clarity,feedback,sentence_comments_count
2
  2025-09-03T01:08:09.956832,15110470,Jesse,2,2,2,4,2,Good,0
 
 
 
 
 
1
  timestamp,patient_id,expert_name,overall_rating,medical_accuracy,clinical_relevance,completeness,clarity,feedback,sentence_comments_count
2
  2025-09-03T01:08:09.956832,15110470,Jesse,2,2,2,4,2,Good,0
3
+ 2025-09-10T03:03:04.131315,19254962,jj,2,3,3,3,3,1,0
4
+ 2025-09-10T12:06:13.364235,10072153_adm_21253864,JJ,2,4,2,4,2,,0
5
+ 2025-10-07T03:13:07.353927,10042908_adm_20358696,111,2,3,3,3,3,111,0
6
+ 2025-10-07T04:32:04.210907,12991336_adm_25464784,11,2,3,2,2,2,11,0
per_admission_summaries/llama-3.2-3b_per_admission.json ADDED
The diff for this file is too large to render. See raw diff
 
per_admission_summaries/llama-3.2-3b_per_admission.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
per_admission_summaries/llama-3.2-3b_per_admission_grouped.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
requirements.txt CHANGED
@@ -65,3 +65,8 @@ tzdata==2024.1
65
  urllib3==2.2.3
66
  uvicorn==0.30.6
67
  websockets==11.0.3
 
 
 
 
 
 
65
  urllib3==2.2.3
66
  uvicorn==0.30.6
67
  websockets==11.0.3
68
+ google-api-python-client==2.143.0
69
+ google-auth-httplib2==0.2.0
70
+ google-auth-oauthlib==1.2.1
71
+ Flask==2.3.3
72
+ flask-cors==4.0.0
src/conversation.py CHANGED
@@ -96,6 +96,6 @@ class Conversation:
96
 
97
 
98
  if __name__ == '__main__':
99
- os.environ["OPENAI_API_KEY"] = "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"
100
  c = Conversation()
101
  c.start_session()
 
96
 
97
 
98
  if __name__ == '__main__':
99
+ os.environ["OPENAI_API_KEY"] = OPENAI_API_KEY
100
  c = Conversation()
101
  c.start_session()
src/server.py CHANGED
@@ -141,8 +141,9 @@ def configure_routes(app, args):
141
  '''
142
  data = request.get_json()
143
  username = data.get('username')
144
-
145
- os.environ["OPENAI_API_KEY"] = "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"
 
146
 
147
  # initialize
148
  # server.patient.patient_id = username
 
141
  '''
142
  data = request.get_json()
143
  username = data.get('username')
144
+ api_key = data.get('api_key')
145
+ if api_key and isinstance(api_key, str) and api_key.strip():
146
+ os.environ["OPENAI_API_KEY"] = api_key.strip()
147
 
148
  # initialize
149
  # server.patient.patient_id = username
summaries/subject_11402775_hadm_25285222_input.txt ADDED
@@ -0,0 +1,724 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ PRE-OPERATIVE SUMMARY INPUT (SINGLE ADMISSION):
2
+
3
+ PATIENT:
4
+ - Age: 55
5
+ - Gender: M
6
+
7
+ ADMISSION:
8
+ - Admission ID: 25285222
9
+ - Admission Type: EW EMER.
10
+ - Admission Location: PHYSICIAN REFERRAL
11
+ - Discharge Location: HOME
12
+ - Insurance: Other
13
+ - Race: BLACK/AFRICAN AMERICAN
14
+ - Marital Status: SINGLE
15
+ - Language: ENGLISH
16
+
17
+ PROCEDURES (0 total):
18
+ - None
19
+
20
+ DIAGNOSES (13 total):
21
+ - A481 (ICD-10)
22
+ - N179 (ICD-10)
23
+ - E871 (ICD-10)
24
+ - E440 (ICD-10)
25
+ - E860 (ICD-10)
26
+ - E8339 (ICD-10)
27
+ - I480 (ICD-10)
28
+ - R197 (ICD-10)
29
+ - D649 (ICD-10)
30
+ - E041 (ICD-10)
31
+ - F1011 (ICD-10)
32
+ - Z87891 (ICD-10)
33
+ - Z6820 (ICD-10)
34
+
35
+ LABORATORY RESULTS:
36
+ - Item ID 50802: 1 measurements, 2197-09-13 16:38:00 to 2197-09-13 16:38:00
37
+ - Item ID 50804: 1 measurements, 2197-09-13 16:38:00 to 2197-09-13 16:38:00
38
+ - Item ID 50813: 3 measurements, 2197-09-13 16:38:00 to 2197-09-14 13:16:00
39
+ - Item ID 50818: 1 measurements, 2197-09-13 16:38:00 to 2197-09-13 16:38:00
40
+ - Item ID 50820: 1 measurements, 2197-09-13 16:38:00 to 2197-09-13 16:38:00
41
+ - Item ID 50821: 1 measurements, 2197-09-13 16:38:00 to 2197-09-13 16:38:00
42
+ - Item ID 50861: 10 measurements, 2197-09-07 07:43:00 to 2197-09-16 06:52:00
43
+ - Item ID 50862: 5 measurements, 2197-09-08 06:42:00 to 2197-09-16 06:52:00
44
+ - Item ID 50863: 10 measurements, 2197-09-07 07:43:00 to 2197-09-16 06:52:00
45
+ - Item ID 50868: 11 measurements, 2197-09-07 07:43:00 to 2197-09-16 06:52:00
46
+ - Item ID 50878: 10 measurements, 2197-09-07 07:43:00 to 2197-09-16 06:52:00
47
+ - Item ID 50882: 11 measurements, 2197-09-07 07:43:00 to 2197-09-16 06:52:00
48
+ - Item ID 50883: 1 measurements, 2197-09-13 16:03:00 to 2197-09-13 16:03:00
49
+ - Item ID 50884: 1 measurements, 2197-09-13 16:03:00 to 2197-09-13 16:03:00
50
+ - Item ID 50885: 11 measurements, 2197-09-07 07:43:00 to 2197-09-16 06:52:00
51
+ - Item ID 50889: 2 measurements, 2197-09-14 07:10:00 to 2197-09-15 06:33:00
52
+ - Item ID 50893: 11 measurements, 2197-09-07 07:43:00 to 2197-09-16 06:52:00
53
+ - Item ID 50902: 11 measurements, 2197-09-07 07:43:00 to 2197-09-16 06:52:00
54
+ - Item ID 50909: 2 measurements, 2197-09-13 16:03:00 to 2197-09-14 09:32:00
55
+ - Item ID 50912: 11 measurements, 2197-09-07 07:43:00 to 2197-09-16 06:52:00
56
+ - Item ID 50920: 1 measurements, 2197-09-14 07:10:00 to 2197-09-14 07:10:00
57
+ - Item ID 50924: 7 measurements, 2197-09-07 16:03:00 to 2197-09-15 06:33:00
58
+ - Item ID 50931: 11 measurements, 2197-09-07 07:43:00 to 2197-09-16 06:52:00
59
+ - Item ID 50934: 14 measurements, 2197-09-07 07:43:00 to 2197-09-16 06:52:00
60
+ - Item ID 50935: 1 measurements, 2197-09-13 16:03:00 to 2197-09-13 16:03:00
61
+ - Item ID 50938: 1 measurements, 2197-09-08 06:42:00 to 2197-09-08 06:42:00
62
+ - Item ID 50940: 1 measurements, 2197-09-07 16:03:00 to 2197-09-07 16:03:00
63
+ - Item ID 50941: 1 measurements, 2197-09-07 16:03:00 to 2197-09-07 16:03:00
64
+ - Item ID 50942: 1 measurements, 2197-09-07 16:03:00 to 2197-09-07 16:03:00
65
+ - Item ID 50943: 1 measurements, 2197-09-07 16:03:00 to 2197-09-07 16:03:00
66
+ - Item ID 50947: 14 measurements, 2197-09-07 07:43:00 to 2197-09-16 06:52:00
67
+ - Item ID 50952: 1 measurements, 2197-09-07 16:03:00 to 2197-09-07 16:03:00
68
+ - Item ID 50953: 1 measurements, 2197-09-07 16:03:00 to 2197-09-07 16:03:00
69
+ - Item ID 50954: 6 measurements, 2197-09-07 07:43:00 to 2197-09-16 06:52:00
70
+ - Item ID 50960: 11 measurements, 2197-09-07 07:43:00 to 2197-09-16 06:52:00
71
+ - Item ID 50963: 1 measurements, 2197-09-13 16:03:00 to 2197-09-13 16:03:00
72
+ - Item ID 50964: 1 measurements, 2197-09-12 06:50:00 to 2197-09-12 06:50:00
73
+ - Item ID 50970: 11 measurements, 2197-09-07 07:43:00 to 2197-09-16 06:52:00
74
+ - Item ID 50971: 11 measurements, 2197-09-07 07:43:00 to 2197-09-16 06:52:00
75
+ - Item ID 50979: 3 measurements, 2197-09-12 00:00:00 to 2197-09-12 00:00:00
76
+ - Item ID 50983: 11 measurements, 2197-09-07 07:43:00 to 2197-09-16 06:52:00
77
+ - Item ID 50993: 1 measurements, 2197-09-13 06:42:00 to 2197-09-13 06:42:00
78
+ - Item ID 50998: 1 measurements, 2197-09-07 16:03:00 to 2197-09-07 16:03:00
79
+ - Item ID 51006: 11 measurements, 2197-09-07 07:43:00 to 2197-09-16 06:52:00
80
+ - Item ID 51082: 3 measurements, 2197-09-08 13:15:00 to 2197-09-13 13:30:00
81
+ - Item ID 51087: 5 measurements, 2197-09-08 13:15:00 to 2197-09-13 13:30:00
82
+ - Item ID 51093: 3 measurements, 2197-09-08 13:15:00 to 2197-09-13 13:30:00
83
+ - Item ID 51099: 1 measurements, 2197-09-13 13:30:00 to 2197-09-13 13:30:00
84
+ - Item ID 51100: 3 measurements, 2197-09-08 13:15:00 to 2197-09-13 13:30:00
85
+ - Item ID 51102: 1 measurements, 2197-09-13 13:30:00 to 2197-09-13 13:30:00
86
+ - Item ID 51103: 2 measurements, 2197-09-11 15:38:00 to 2197-09-12 00:00:00
87
+ - Item ID 51133: 5 measurements, 2197-09-08 06:42:00 to 2197-09-16 06:52:00
88
+ - Item ID 51146: 5 measurements, 2197-09-08 06:42:00 to 2197-09-16 06:52:00
89
+ - Item ID 51200: 5 measurements, 2197-09-08 06:42:00 to 2197-09-16 06:52:00
90
+ - Item ID 51221: 10 measurements, 2197-09-07 07:43:00 to 2197-09-16 06:52:00
91
+ - Item ID 51222: 10 measurements, 2197-09-07 07:43:00 to 2197-09-16 06:52:00
92
+ - Item ID 51237: 4 measurements, 2197-09-07 07:43:00 to 2197-09-15 06:33:00
93
+ - Item ID 51244: 5 measurements, 2197-09-08 06:42:00 to 2197-09-16 06:52:00
94
+ - Item ID 51248: 10 measurements, 2197-09-07 07:43:00 to 2197-09-16 06:52:00
95
+ - Item ID 51249: 10 measurements, 2197-09-07 07:43:00 to 2197-09-16 06:52:00
96
+ - Item ID 51250: 10 measurements, 2197-09-07 07:43:00 to 2197-09-16 06:52:00
97
+ - Item ID 51254: 5 measurements, 2197-09-08 06:42:00 to 2197-09-16 06:52:00
98
+ - Item ID 51256: 5 measurements, 2197-09-08 06:42:00 to 2197-09-16 06:52:00
99
+ - Item ID 51265: 10 measurements, 2197-09-07 07:43:00 to 2197-09-16 06:52:00
100
+ - Item ID 51274: 4 measurements, 2197-09-07 07:43:00 to 2197-09-15 06:33:00
101
+ - Item ID 51275: 3 measurements, 2197-09-07 07:43:00 to 2197-09-15 06:33:00
102
+ - Item ID 51277: 10 measurements, 2197-09-07 07:43:00 to 2197-09-16 06:52:00
103
+ - Item ID 51279: 10 measurements, 2197-09-07 07:43:00 to 2197-09-16 06:52:00
104
+ - Item ID 51282: 1 measurements, 2197-09-13 16:03:00 to 2197-09-13 16:03:00
105
+ - Item ID 51283: 1 measurements, 2197-09-13 16:03:00 to 2197-09-13 16:03:00
106
+ - Item ID 51301: 10 measurements, 2197-09-07 07:43:00 to 2197-09-16 06:52:00
107
+ - Item ID 51463: 1 measurements, 2197-09-08 13:15:00 to 2197-09-08 13:15:00
108
+ - Item ID 51464: 2 measurements, 2197-09-08 13:15:00 to 2197-09-13 13:30:00
109
+ - Item ID 51466: 2 measurements, 2197-09-08 13:15:00 to 2197-09-13 13:30:00
110
+ - Item ID 51476: 1 measurements, 2197-09-08 13:15:00 to 2197-09-08 13:15:00
111
+ - Item ID 51478: 2 measurements, 2197-09-08 13:15:00 to 2197-09-13 13:30:00
112
+ - Item ID 51479: 1 measurements, 2197-09-08 13:15:00 to 2197-09-08 13:15:00
113
+ - Item ID 51482: 1 measurements, 2197-09-08 13:15:00 to 2197-09-08 13:15:00
114
+ - Item ID 51484: 2 measurements, 2197-09-08 13:15:00 to 2197-09-13 13:30:00
115
+ - Item ID 51486: 2 measurements, 2197-09-08 13:15:00 to 2197-09-13 13:30:00
116
+ - Item ID 51487: 2 measurements, 2197-09-08 13:15:00 to 2197-09-13 13:30:00
117
+ - Item ID 51491: 2 measurements, 2197-09-08 13:15:00 to 2197-09-13 13:30:00
118
+ - Item ID 51492: 2 measurements, 2197-09-08 13:15:00 to 2197-09-13 13:30:00
119
+ - Item ID 51493: 1 measurements, 2197-09-08 13:15:00 to 2197-09-08 13:15:00
120
+ - Item ID 51498: 2 measurements, 2197-09-08 13:15:00 to 2197-09-13 13:30:00
121
+ - Item ID 51506: 2 measurements, 2197-09-08 13:15:00 to 2197-09-13 13:30:00
122
+ - Item ID 51508: 2 measurements, 2197-09-08 13:15:00 to 2197-09-13 13:30:00
123
+ - Item ID 51512: 1 measurements, 2197-09-08 13:15:00 to 2197-09-08 13:15:00
124
+ - Item ID 51514: 2 measurements, 2197-09-08 13:15:00 to 2197-09-13 13:30:00
125
+ - Item ID 51516: 1 measurements, 2197-09-08 13:15:00 to 2197-09-08 13:15:00
126
+ - Item ID 51519: 1 measurements, 2197-09-08 13:15:00 to 2197-09-08 13:15:00
127
+ - Item ID 51564: 1 measurements, 2197-09-09 07:17:00 to 2197-09-09 07:17:00
128
+ - Item ID 51657: 1 measurements, 2197-09-07 16:03:00 to 2197-09-07 16:03:00
129
+ - Item ID 51658: 1 measurements, 2197-09-07 16:03:00 to 2197-09-07 16:03:00
130
+ - Item ID 51659: 1 measurements, 2197-09-07 16:03:00 to 2197-09-07 16:03:00
131
+ - Item ID 51662: 1 measurements, 2197-09-08 06:42:00 to 2197-09-08 06:42:00
132
+ - Item ID 51663: 1 measurements, 2197-09-07 16:03:00 to 2197-09-07 16:03:00
133
+ - Item ID 51678: 14 measurements, 2197-09-07 07:43:00 to 2197-09-16 06:52:00
134
+ - Item ID 51706: 1 measurements, 2197-09-11 18:21:00 to 2197-09-11 18:21:00
135
+ - Item ID 52033: 1 measurements, 2197-09-13 16:38:00 to 2197-09-13 16:38:00
136
+ - Item ID 52069: 5 measurements, 2197-09-08 06:42:00 to 2197-09-16 06:52:00
137
+ - Item ID 52073: 5 measurements, 2197-09-08 06:42:00 to 2197-09-16 06:52:00
138
+ - Item ID 52074: 5 measurements, 2197-09-08 06:42:00 to 2197-09-16 06:52:00
139
+ - Item ID 52075: 5 measurements, 2197-09-08 06:42:00 to 2197-09-16 06:52:00
140
+ - Item ID 52135: 5 measurements, 2197-09-08 06:42:00 to 2197-09-16 06:52:00
141
+ - Item ID 52171: 1 measurements, 2197-09-13 16:03:00 to 2197-09-13 16:03:00
142
+ - Item ID 52172: 10 measurements, 2197-09-07 07:43:00 to 2197-09-16 06:52:00
143
+ - Item ID 53153: 1 measurements, 2197-09-09 07:17:00 to 2197-09-09 07:17:00
144
+
145
+ CLINICAL NOTES:
146
+ [DISCHARGE NOTE]
147
+ Name: ___ Unit No: ___
148
+
149
+ Admission Date: ___ Discharge Date: ___
150
+
151
+ Date of Birth: ___ Sex: M
152
+
153
+ Service: MEDICINE
154
+
155
+ Allergies:
156
+ Penicillins
157
+
158
+ Attending: ___.
159
+
160
+ Chief Complaint:
161
+ Abd Pain, Diarrhea, Fever
162
+
163
+
164
+ Major Surgical or Invasive Procedure:
165
+ None
166
+
167
+
168
+ History of Present Illness:
169
+ ___ PMHx EtOH use disorder who presents with fever, diarrhea. He
170
+ reports 2 weeks of large volume diarrhea with one to two
171
+ episodes per day. The diarrhea is watery and non-bloody.
172
+ Additionally, he reports that he has 'felt like he had the flu'
173
+ for a week and has had generalized malaise, decreased appetite,
174
+ and nausea with no emesis. He reported fevers at home up to
175
+ 103.4.
176
+
177
+ Past Medical History:
178
+ Alcohol use disorder
179
+
180
+ Social History:
181
+ ___
182
+ Family History:
183
+ No family history of HTN, DM, or cancer
184
+
185
+ Physical Exam:
186
+ ADMISSION PHYSICAL EXAM
187
+ =======================
188
+ GENERAL: Alert and interactive. In no acute distress.
189
+ HEENT: PERRL, EOMI.
190
+ NECK: No cervical lymphadenopathy. No JVD.
191
+ CARDIAC: regular rate and rhythm , no m/r/g
192
+ LUNGS: Crackles in LLL
193
+ BACK: No CVA tenderness.
194
+ ABDOMEN: Soft, NT, ND, +BS
195
+ EXTREMITIES: No clubbing, cyanosis, or edema.
196
+ SKIN: Warm. No rashes.
197
+ NEUROLOGIC: AOx3. CN2-12 intact. Grossly intact.
198
+
199
+ DISCHARGE PHYSICAL EXAM
200
+ =======================
201
+ GENERAL: Alert and interactive. In no acute distress.
202
+ HEENT: PERRL, EOMI.
203
+ NECK: No cervical lymphadenopathy. No JVD.
204
+ CARDIAC: Tachycardic, regular rhythm , no m/r/g
205
+ LUNGS: Crackles in LLL
206
+ BACK: No CVA tenderness.
207
+ ABDOMEN: Soft, NT, ND, +BS
208
+ EXTREMITIES: No clubbing, cyanosis, or edema.
209
+ SKIN: Warm. No rashes.
210
+ NEUROLOGIC: AOx3. CN2-12 intact. Grossly intact.
211
+
212
+ Pertinent Results:
213
+ ADMISSION LABS
214
+ ==============
215
+ ___ 04:37PM BLOOD WBC-6.9 RBC-4.67 Hgb-14.0 Hct-39.9*
216
+ MCV-85 MCH-30.0 MCHC-35.1 RDW-13.4 RDWSD-42.3 Plt ___
217
+ ___ 04:37PM BLOOD Glucose-124* UreaN-34* Creat-1.9*#
218
+ Na-128* K-4.6 Cl-89* HCO3-25 AnGap-14
219
+ ___ 04:37PM BLOOD ALT-274* AST-538* AlkPhos-71 TotBili-1.6*
220
+ DirBili-0.6* IndBili-1.0
221
+ ___ 04:03PM BLOOD calTIBC-157* Ferritn-4264* TRF-121*
222
+
223
+ DISCHARGE LABS
224
+ ==============
225
+ ___ 06:52AM BLOOD WBC-7.4 RBC-3.31* Hgb-9.9* Hct-30.3*
226
+ MCV-92 MCH-29.9 MCHC-32.7 RDW-14.6 RDWSD-48.6* Plt ___
227
+ ___ 06:52AM BLOOD Glucose-110* UreaN-9 Creat-0.7 Na-139
228
+ K-4.2 Cl-105 HCO3-23 AnGap-11
229
+ ___ 06:52AM BLOOD ALT-98* AST-95* LD(LDH)-310* AlkPhos-74
230
+ TotBili-0.5
231
+ ___ 06:52AM BLOOD Albumin-2.6* Calcium-8.2* Phos-3.0 Mg-1.7
232
+ ___ 06:33AM BLOOD Ferritn-876*
233
+
234
+ RELEVANT IMAGING
235
+ ================
236
+ IMPRESSION:
237
+ Pre-existing pneumonia in the left upper and lower lobes,
238
+ attributed to
239
+ Legionella, as per OMR notes. No evidence of parenchymal
240
+ abscesses or
241
+ empyemas. Small mediastinal lymph nodes are likely reactive.
242
+
243
+ RELEVANT MICRO
244
+ ==============
245
+ ___ 5:00 pm URINE TAKEN FROM ___.
246
+
247
+ **FINAL REPORT ___
248
+
249
+ Legionella Urinary Antigen (Final ___:
250
+ PRESUMPTIVE POSITIVE FOR LEGIONELLA SEROGROUP 1 ANTIGEN.
251
+ (Reference Range-Negative).
252
+
253
+
254
+ Brief Hospital Course:
255
+ SUMMARY
256
+ =======
257
+ Mr. ___ is a ___ y/o M w/ no significant past medical
258
+ history presented with Legionnaires disease c/b hyponatremia,
259
+ transaminitis, and an episode of tachyarrythmia. He was treated
260
+ with IV Levofloxacin and transitioned to PO with resolution of
261
+ fevers.
262
+
263
+ ACUTE/ACTIVE ISSUES
264
+ ===================
265
+ # Legionnaires Disease
266
+ Presented with 2 weeks diarrhea, found to have pneumonia on CT,
267
+ diagnosis of legionella confirmed by urine antigen (99%
268
+ specific). Also found to have hyponatremia, hypophosphatemia,
269
+ transaminitis, and hyperferritinemia, all classically associated
270
+ with legionella. The source of infection is unclear based on
271
+ housing/occupational history, but health dept was alerted for
272
+ further investigation into water source. ID was consulted and IV
273
+ levofloxacin was initiated. Imaging of his chest was obtained on
274
+ day 5 due to ongoing fevers over 103. CT ruled out empyema. Skin
275
+ exam was negative for extrapulmonary lesions. Echo was
276
+ reassuring against endocarditis. He was switched to PO
277
+ levofloxacin once fevers defervesced and he clinically imrpoved
278
+ on day 7. EKGs were obtained daily which showed mild QTc
279
+ prolongation likely due to levofloxacin and inflammation, but
280
+ never >500. He was discharged home with PO levofloxacin in order
281
+ to complete total 2 week course (final dose on ___.
282
+ [] Patient will need to complete a total of 2 weeks of
283
+ antibiotics with levofloxacin. His last dose of medication will
284
+ be on ___.
285
+ [] Patient should have repeat lung imaging in ___ weeks after
286
+ completion of antibiotics in order to ensure resolution of his
287
+ pneumonia.
288
+
289
+ # Tachyarrhythmia
290
+ Mr ___ had one sustained episode of narrow complex SVT to
291
+ 140s, throughout which he was asymptomatic. The arrythmia
292
+ resolved without intervention. EKG was obtained which was
293
+ concerining for A Fib vs AVNRT. Chads vasc score is 0, so no
294
+ anticoagulation indicated. He was also found to have orthostatic
295
+ hypotension to 77/53 suggesting hypovolemia as etiology, but
296
+ given his ample urine output with low urine osms, and his
297
+ persistent tachycardia despite IV fluid repletion, dehydration
298
+ was felt to be unlikely cause. No sign of hypovolemia from blood
299
+ or other fluid losses. Echo reassuring against
300
+ structural/functional cardiac abnormalities. CTA was negative
301
+ for PE. TSH was not consistent with thyrotoxicosis. Cortisol was
302
+ 15.1. Cardiology was consulted, and also had difficulty
303
+ differentiating his tachyarrhythmia. He was discharged with a
304
+ Ziopatch for 1 month monitoring as an outpatient.
305
+ [] Patient is being discharge with a Ziopatch for 1 month of
306
+ monitoring. This should be followed up by his PCP.
307
+
308
+ # Anemia
309
+ Hgb downtrended throughout admission, most likely acute phase
310
+ reaction from inflammation. Hemolysis labs were negative, making
311
+ AIHA triggered by legionella or levofloxacin unlikely. Guiac was
312
+ obtained to assess for occult GI bleeding, but was negative.
313
+ Improved prior to discharge.
314
+
315
+ # Transaminitis
316
+ Consistent with legionella infection as above. Not thought to be
317
+ related to previous history of alcohol use. Tested negative for
318
+ leptospirosis, Hepatitis A/B/C, and HIV. ALT and AST downtrended
319
+ with treatment of legionella infection. Continue to follow in an
320
+ outpatient setting.
321
+ [] Patient will require repeat LFTs prior to his appointment on
322
+ ___.
323
+
324
+ # Hyponatremia
325
+ Consistent with legionella, and likely some component of
326
+ hypovolemia based on urine lytes on admission. Improved with
327
+ increased PO intake.
328
+
329
+ # Diarrhea
330
+ Patient presented with 2 weeks of diarrhea likely related to
331
+ Legionella infection which quickly resolved with initiation of
332
+ levofloxacin. Negative for C Diff, HIV, and Hep A. He was
333
+ treated with IV fluids and phospate repletion.
334
+
335
+ # ___
336
+ Pre-renal, with urine lytes demonstrating high osm and low
337
+ sodium. Likely due to dehydration from diarrhea and low PO
338
+ intake in setting of legionella. Resolved with IVF.
339
+
340
+ TRANSITIONAL ISSUES
341
+ ===================
342
+ [] Patient has an appointment to establish care with a new PCP
343
+ on discharge. He would benefit from more regular screening of
344
+ his healthcare maintenance.
345
+ [] Patient will need to complete a total of 2 weeks of
346
+ antibiotics with levofloxacin. His last dose of medication will
347
+ be on ___.
348
+ [] Patient should have repeat lung imaging in ___ weeks after
349
+ completion of antibiotics in order to ensure resolution of his
350
+ pneumonia.
351
+ [] Patient was incidentally noted to have a Right Thyroid Nodule
352
+ of 17mm. It should be further evaluated with ultrasound of the
353
+ thyroid.
354
+ [] Patient will require repeat LFTs prior to his appointment on
355
+ ___.
356
+ [] Patient is being discharge with a Ziopatch for 1 month of
357
+ monitoring. This should be followed up by his PCP.
358
+
359
+ Medications on Admission:
360
+ The Preadmission Medication list is accurate and complete.
361
+ 1. This patient is not taking any preadmission medications
362
+
363
+
364
+ Discharge Medications:
365
+ 1. LevoFLOXacin 750 mg PO DAILY
366
+ RX *levofloxacin 750 mg 1 tablet(s) by mouth once a day Disp #*2
367
+ Tablet Refills:*0
368
+ 2.Outpatient Lab Work
369
+ ICD-9 Code: ___
370
+ Contact: ___ phone: ___ fax: ___
371
+ Labs: Basic Metabolic Panel, Liver Function Tests
372
+
373
+
374
+ Discharge Disposition:
375
+ Home
376
+
377
+ Discharge Diagnosis:
378
+ PRIMARY
379
+ =======
380
+ Legionella Pneumonia
381
+
382
+ SECONDARY
383
+ =========
384
+ Hyponatremia
385
+ Transaminits
386
+ Tachyarrhythmia
387
+
388
+
389
+ Discharge Condition:
390
+ Mental Status: Clear and coherent.
391
+ Level of Consciousness: Alert and interactive.
392
+ Activity Status: Ambulatory - Independent.
393
+
394
+
395
+ Discharge Instructions:
396
+ ======================
397
+ DISCHARGE INSTRUCTIONS
398
+ ======================
399
+ Dear Mr. ___,
400
+
401
+ It was a pleasure caring for you at ___
402
+ ___.
403
+
404
+ WHY WAS I IN THE HOSPITAL?
405
+ - You came to the hospital with fatigue and diarrhea. You were
406
+ found to have an infection called legionella.
407
+
408
+ WHAT HAPPENED TO ME IN THE HOSPITAL?
409
+ - We performed lab tests and imaging to diagnose the infection.
410
+ - You were treated with an antibiotic called levofloxacin
411
+ through an IV and transitioned to the oral version. You were
412
+ given IV fluids because you were dehydrated.
413
+ - Your heart was found to be beating quickly. In order to better
414
+ evaluate this, we gave you a monitor to wear for 1 month. You
415
+ should continue to follow up with your doctor about this.
416
+
417
+ WHAT SHOULD I DO AFTER I LEAVE THE HOSPITAL?
418
+ - You will need to continue taking antibiotics at home until
419
+ ___.
420
+ - Please get blood work done prior to your primary care
421
+ appointment on ___
422
+ - Continue to take all your medicines and keep your
423
+ appointments.
424
+
425
+ We wish you the best!
426
+
427
+ Sincerely,
428
+ Your ___ Team
429
+
430
+
431
+ Followup Instructions:
432
+ ___
433
+
434
+ [RADIOLOGY NOTE]
435
+ EXAMINATION: CHEST (PA AND LAT)
436
+
437
+ INDICATION: History: ___ with fever, eval cause// History: ___ with fever,
438
+ eval cause
439
+
440
+ TECHNIQUE: Chest AP and lateral
441
+
442
+ COMPARISON: Chest radiograph dated ___.
443
+ CT abdomen pelvis performed on the same date.
444
+
445
+ FINDINGS:
446
+
447
+ There is a moderately extensive lateral left midlung consolidation most
448
+ consistent with pneumonia involving the left upper lobe. Suspected bulla at
449
+ each lung apex new since the remote prior study. There is no visible
450
+ pneumothorax. Trace possible pleural effusions. Cardiac, mediastinal and
451
+ hilar contours appear stable. Bony structures are unremarkable.
452
+
453
+ IMPRESSION:
454
+
455
+ Consolidation in the left upper lobe most consistent with pneumonia.
456
+
457
+ RECOMMENDATION(S): Follow-up radiographs are recommended to show resolution
458
+ within approximately 8 weeks.
459
+
460
+ [RADIOLOGY NOTE]
461
+ EXAMINATION: LIVER OR GALLBLADDER US (SINGLE ORGAN)
462
+
463
+ INDICATION: History: ___ with PMHx etOH use disorder p/w fever, diarrhea,
464
+ transaminitis. Eval for cirrhosis, PVT, if cirrhosis eval abdomen for tappable
465
+ ascites// History: ___ with PMHx etOH use disorder p/w fever, diarrhea,
466
+ transaminitis. Eval for cirrhosis, PVT, if cirrhosis eval abdomen for tappable
467
+ ascites
468
+
469
+ TECHNIQUE: Grey scale and color Doppler ultrasound images of the abdomen were
470
+ obtained.
471
+
472
+ COMPARISON: None.
473
+
474
+ FINDINGS:
475
+
476
+ LIVER: The hepatic parenchyma appears within normal limits. The contour of the
477
+ liver is smooth. There is no focal liver mass. The main portal vein is patent
478
+ with hepatopetal flow. Normal color flow and waveforms are also seen in the
479
+ left portal vein, anterior right portal vein and posterior portal veins.
480
+ There is no ascites.
481
+
482
+ BILE DUCTS: There is no intrahepatic biliary dilation.
483
+ CHD: 2 mm
484
+
485
+ GALLBLADDER: There is no evidence of stones or gallbladder wall thickening.
486
+
487
+ PANCREAS: The head, body, and tail of the pancreas are within normal limits,
488
+ without masses or pancreatic ductal dilatation.
489
+
490
+ SPLEEN: Normal echogenicity.
491
+ Spleen length: 9.5 cm
492
+
493
+ KIDNEYS: Limited views of the kidneys show no hydronephrosis.
494
+
495
+ RETROPERITONEUM: The visualized portions of aorta and IVC are within normal
496
+ limits.
497
+
498
+ IMPRESSION:
499
+
500
+
501
+ 1. Normal abdominal ultrasound.
502
+ 2. No evidence of ascites. The portal veins are patent.
503
+
504
+ [RADIOLOGY NOTE]
505
+ EXAMINATION: CT ABD AND PELVIS W/O CONTRAST
506
+
507
+ INDICATION: NO_PO contrast; History: ___ with fever, seen here 1 week ago for
508
+ L inguinal hernia eval cause feverNO_PO contrast// History: ___ with fever,
509
+ seen here 1 week ago for L inguinal hernia eval cause fever
510
+
511
+ TECHNIQUE: Multidetector CT images of the abdomen and pelvis were acquired
512
+ without intravenous contrast. Non-contrast scan has several limitations in
513
+ detecting vascular and parenchymal organ abnormalities, including tumor
514
+ detection.
515
+ Oral contrast was not administered.
516
+ Coronal and sagittal reformations were performed and reviewed on PACS.
517
+
518
+ DOSE: Acquisition sequence:
519
+ 1) Spiral Acquisition 6.5 s, 51.1 cm; CTDIvol = 10.0 mGy (Body) DLP = 507.9
520
+ mGy-cm.
521
+ Total DLP (Body) = 508 mGy-cm.
522
+
523
+ COMPARISON: None.
524
+
525
+ FINDINGS:
526
+
527
+ LOWER CHEST: Partially visualized is dense consolidation within the inferior
528
+ aspect of the left upper lobe (2:1) corresponding to the lingula. Trace
529
+ left-sided pleural effusion. Heart is borderline in size.
530
+
531
+ ABDOMEN:
532
+
533
+ HEPATOBILIARY: The liver demonstrates homogeneous attenuation throughout.
534
+ There is no evidence of focal lesions within the limitations of an unenhanced
535
+ scan. There is no evidence of intrahepatic or extrahepatic biliary
536
+ dilatation. The gallbladder is within normal limits.
537
+
538
+ PANCREAS: The pancreas has normal attenuation throughout, without evidence of
539
+ focal lesions within the limitations of an unenhanced scan. There is no
540
+ pancreatic ductal dilatation. There is no peripancreatic stranding.
541
+
542
+ SPLEEN: The spleen shows normal size and attenuation throughout, without
543
+ evidence of focal lesions.
544
+
545
+ ADRENALS: The right and left adrenal glands are normal in size and shape.
546
+
547
+ URINARY: The kidneys are of normal and symmetric size. Minimal focus of
548
+ calcification along the right lower pole. There is no evidence of focal renal
549
+ lesions within the limitations of an unenhanced scan. There is no
550
+ hydronephrosis. There is no nephrolithiasis. There is no perinephric
551
+ abnormality.
552
+
553
+ GASTROINTESTINAL: The stomach is unremarkable. Small bowel loops demonstrate
554
+ normal caliber, wall thickness, and enhancement throughout. The colon and
555
+ rectum are within normal limits. The appendix is not visualized.
556
+
557
+ PELVIS: The urinary bladder and distal ureters are unremarkable. There is no
558
+ free fluid in the pelvis.
559
+
560
+ REPRODUCTIVE ORGANS: The prostate gland is mildly enlarged measuring up to 5.4
561
+ cm in transverse dimension (2:77).
562
+
563
+ LYMPH NODES: There is no retroperitoneal or mesenteric lymphadenopathy. There
564
+ is no pelvic or inguinal lymphadenopathy.
565
+
566
+ VASCULAR: There is no abdominal aortic aneurysm. Mild atherosclerotic disease
567
+ is noted.
568
+
569
+ BONES: There are moderate degenerative changes in the right hip with loss of
570
+ joint space with subchondral cystic change and sclerosis. There is no
571
+ evidence of worrisome osseous lesions or acute fracture.
572
+
573
+ SOFT TISSUES: The abdominal and pelvic wall is within normal limits. The
574
+ study is not demonstrated definite left inguinal hernia. However, this study
575
+ was not performed with dynamic maneuvers to best evaluate for hernia.
576
+
577
+ IMPRESSION:
578
+
579
+
580
+ 1. Lingular pneumonia is partially visualized.
581
+ 2. No evidence of acute pathology in the abdomen or pelvis.
582
+
583
+ [RADIOLOGY NOTE]
584
+ EXAMINATION: CHEST (PORTABLE AP)
585
+
586
+ INDICATION: ___ year old man with legionella, continued fevers on
587
+ antibtiotics// ?improvement/?empyema ?improvement/?empyema
588
+
589
+ IMPRESSION:
590
+
591
+ Comparison to ___. The previous consolidation in the left lateral
592
+ lung has substantially decreased. The periphery of the central consolidation
593
+ has been replaced by opacities, notably in the lower part of the left lower
594
+ lobe. There is no evidence of new parenchymal changes border lesions.
595
+ Borderline size of the cardiac silhouette without pulmonary edema. Stable
596
+ minimal right apical scarring.
597
+
598
+ [RADIOLOGY NOTE]
599
+ EXAMINATION: CT CHEST W/CONTRAST
600
+
601
+ INDICATION: ___ year old man with legionnaires' disease, and worsening
602
+ infection// ? empyema
603
+
604
+ TECHNIQUE: Multi detector helical scanning of the chest was coordinated with
605
+ intravenous infusion of nonionic iodinated contrast agent and reconstructed as
606
+ 5 and 1.25 mm thick axial, 2.5 mm thick coronal and parasagittal, and 8 mm MIP
607
+ axial images. All images were reviewed.
608
+
609
+ DOSE: Acquisition sequence:
610
+ 1) Spiral Acquisition 9.9 s, 37.9 cm; CTDIvol = 6.3 mGy (Body) DLP = 229.0
611
+ mGy-cm.
612
+ Total DLP (Body) = 243 mGy-cm.
613
+
614
+ COMPARISON: None available.
615
+
616
+ FINDINGS:
617
+
618
+ NECK, THORACIC INLET, AXILLAE AND CHEST WALL:
619
+ Heterogeneous thyroid with a nodule in the right lobe measuring 1.7 cm (3:4).
620
+ No enlarged lymph nodes in either axilla or thoracic inlet. No abnormalities
621
+ on the chest wall. No atherosclerotic calcifications in the head and neck
622
+ arteries.
623
+
624
+ HEART AND VASCULATURE:
625
+ The heart is normal in size and shape. No pericardial effusion. No
626
+ atherosclerotic calcifications in the coronary arteries, cardiac valves or
627
+ aorta. The aorta and pulmonary arteries are normal in caliber throughout.
628
+
629
+ MEDIASTINUM AND HILA:
630
+ The esophagus is unremarkable. Small mediastinal lymph nodes, none
631
+ pathologically enlarged by CT size criteria, for example in the prevascular
632
+ station measuring 0.7 cm in short axis diameter (03:23) and in the right upper
633
+ paratracheal station measuring 0.8 cm (3:8). No hilar lymphadenopathy.
634
+
635
+ PLEURA:
636
+ No pleural effusions. Paraseptal bullae in both apices. No evidence of an
637
+ empyema.
638
+
639
+ LUNGS:
640
+ The airways are patent to the subsegmental levels. No bronchial wall
641
+ thickening, bronchiectasis or mucus plugging. Mild centrilobular emphysema.
642
+ Consolidation with air bronchograms noted in the left upper lobe associated to
643
+ areas of ground-glass opacities peripherally in the left upper and lower
644
+ lobes. No suspicious lung nodules or masses. No parenchymal abscesses.
645
+
646
+ CHEST CAGE:
647
+ No acute fractures. Mild dorsal spondylosis. No suspicious lytic or sclerotic
648
+ lesions.
649
+
650
+ UPPER ABDOMEN:
651
+ The limited sections of the upper abdomen show no significant abnormal
652
+ findings.
653
+
654
+
655
+ IMPRESSION:
656
+
657
+ Pre-existing pneumonia in the left upper and lower lobes, attributed to
658
+ Legionella, as per OMR notes. No evidence of parenchymal abscesses or
659
+ empyemas. Small mediastinal lymph nodes are likely reactive.
660
+
661
+ [RADIOLOGY NOTE]
662
+ EXAMINATION: CTA CHEST Q416
663
+
664
+ INDICATION: ___ year old man with h/o legionairres, c/b persistent tachycardia
665
+ of unclear etiology// r/o PE
666
+
667
+ TECHNIQUE: Multidetector CT images of the chest were obtained with
668
+ intravenous contrast in the pulmonary arterial phase. Sagittal and coronal
669
+ reformations also performed and, in addition, axial and bilateral oblique MIP
670
+ reformations.
671
+
672
+ DOSE: Acquisition sequence:
673
+ 1) Spiral Acquisition 3.0 s, 39.2 cm; CTDIvol = 5.8 mGy (Body) DLP = 226.0
674
+ mGy-cm.
675
+ 2) Stationary Acquisition 0.6 s, 0.5 cm; CTDIvol = 2.1 mGy (Body) DLP = 1.1
676
+ mGy-cm.
677
+ 3) Stationary Acquisition 4.8 s, 0.5 cm; CTDIvol = 16.9 mGy (Body) DLP =
678
+ 8.5 mGy-cm.
679
+ Total DLP (Body) = 236 mGy-cm.
680
+
681
+ COMPARISON: Chest CT is available from ___.
682
+
683
+ FINDINGS:
684
+
685
+ Heart is mildly enlarged. Aorta is normal in caliber. No evidence of acute
686
+ aortic syndrome.
687
+
688
+ No filling defects are identified among pulmonary arterial branches.
689
+
690
+ Again noted is nodule along the posterior right lobe of the thyroid that was
691
+ better depicted before. This is hard to define but probably measures about 17
692
+ mm.
693
+
694
+ Mildly enlarged left-sided mediastinal and hilar lymph nodes are likely
695
+ reactive to infection and unchanged. Trace pleural effusion on the left only.
696
+ No definite right-sided pleural effusion. No pericardial effusion.
697
+
698
+ Again noted is bullous changes at each lung apex in the setting of what is,
699
+ more generally, mild to moderate emphysema.
700
+
701
+ Opacities at each lung base, left greater than right, suggest atelectasis,
702
+ which seems more likely than pneumonia. The left basilar dependent opacity
703
+ has mildly increased. In the left upper lobe, moderately extensive
704
+ consolidation centered in the lingula with air bronchograms has not
705
+ significantly changed over the short interval.
706
+
707
+ Limited views of the upper abdomen are unremarkable.
708
+
709
+ There are no suspicious bone lesions. Vertebral bodies are preserved in
710
+ height.
711
+
712
+ IMPRESSION:
713
+
714
+ 1. Unchanged consolidation centered in the lingula most consistent with
715
+ pneumonia. Mild increase in dependent opacification in the left lower lobe,
716
+ although the this latter regions seems more likely to reflect atelectasis than
717
+ involvement with pneumonia.
718
+
719
+ 2. No evidence of pulmonary embolism.
720
+
721
+ 3. Right lobe thyroid nodule.
722
+
723
+ RECOMMENDATION(S): Follow-up thyroid ultrasound is recommended when
724
+ clinically appropriate to assess 80 right thyroid nodule.
summaries/subject_11402775_hadm_25285222_model_input.txt ADDED
@@ -0,0 +1,751 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ PRE-OPERATIVE SUMMARY INPUT (SINGLE ADMISSION):
2
+
3
+ PATIENT:
4
+ - Age: 55
5
+ - Gender: M
6
+
7
+ ADMISSION:
8
+ - Admission ID: 25285222
9
+ - Admission Type: EW EMER.
10
+ - Admission Location: PHYSICIAN REFERRAL
11
+ - Discharge Location: HOME
12
+ - Insurance: Other
13
+ - Race: BLACK/AFRICAN AMERICAN
14
+ - Marital Status: SINGLE
15
+ - Language: ENGLISH
16
+
17
+ PROCEDURES (0 total):
18
+ - None
19
+
20
+ DIAGNOSES (13 total):
21
+ 1. ICD-10: A481
22
+ 2. ICD-10: N179
23
+ 3. ICD-10: E871
24
+ 4. ICD-10: E440
25
+ 5. ICD-10: E860
26
+ 6. ICD-10: E8339
27
+ 7. ICD-10: I480
28
+ 8. ICD-10: R197
29
+ 9. ICD-10: D649
30
+ 10. ICD-10: E041
31
+ 11. ICD-10: F1011
32
+ 12. ICD-10: Z87891
33
+ 13. ICD-10: Z6820
34
+
35
+ LABORATORY RESULTS:
36
+ Total laboratory events: 480
37
+ Most frequent lab tests:
38
+ - Item ID 50934: 14 measurements
39
+ - Item ID 50947: 14 measurements
40
+ - Item ID 51678: 14 measurements
41
+ - Item ID 50868: 11 measurements
42
+ - Item ID 50882: 11 measurements
43
+
44
+ CLINICAL NOTES:
45
+ [DISCHARGE]
46
+ Name: ___ Unit No: ___
47
+
48
+ Admission Date: ___ Discharge Date: ___
49
+
50
+ Date of Birth: ___ Sex: M
51
+
52
+ Service: MEDICINE
53
+
54
+ Allergies:
55
+ Penicillins
56
+
57
+ Attending: ___.
58
+
59
+ Chief Complaint:
60
+ Abd Pain, Diarrhea, Fever
61
+
62
+
63
+ Major Surgical or Invasive Procedure:
64
+ None
65
+
66
+
67
+ History of Present Illness:
68
+ ___ PMHx EtOH use disorder who presents with fever, diarrhea. He
69
+ reports 2 weeks of large volume diarrhea with one to two
70
+ episodes per day. The diarrhea is watery and non-bloody.
71
+ Additionally, he reports that he has 'felt like he had the flu'
72
+ for a week and has had generalized malaise, decreased appetite,
73
+ and nausea with no emesis. He reported fevers at home up to
74
+ 103.4.
75
+
76
+ Past Medical History:
77
+ Alcohol use disorder
78
+
79
+ Social History:
80
+ ___
81
+ Family History:
82
+ No family history of HTN, DM, or cancer
83
+
84
+ Physical Exam:
85
+ ADMISSION PHYSICAL EXAM
86
+ =======================
87
+ GENERAL: Alert and interactive. In no acute distress.
88
+ HEENT: PERRL, EOMI.
89
+ NECK: No cervical lymphadenopathy. No JVD.
90
+ CARDIAC: regular rate and rhythm , no m/r/g
91
+ LUNGS: Crackles in LLL
92
+ BACK: No CVA tenderness.
93
+ ABDOMEN: Soft, NT, ND, +BS
94
+ EXTREMITIES: No clubbing, cyanosis, or edema.
95
+ SKIN: Warm. No rashes.
96
+ NEUROLOGIC: AOx3. CN2-12 intact. Grossly intact.
97
+
98
+ DISCHARGE PHYSICAL EXAM
99
+ =======================
100
+ GENERAL: Alert and interactive. In no acute distress.
101
+ HEENT: PERRL, EOMI.
102
+ NECK: No cervical lymphadenopathy. No JVD.
103
+ CARDIAC: Tachycardic, regular rhythm , no m/r/g
104
+ LUNGS: Crackles in LLL
105
+ BACK: No CVA tenderness.
106
+ ABDOMEN: Soft, NT, ND, +BS
107
+ EXTREMITIES: No clubbing, cyanosis, or edema.
108
+ SKIN: Warm. No rashes.
109
+ NEUROLOGIC: AOx3. CN2-12 intact. Grossly intact.
110
+
111
+ Pertinent Results:
112
+ ADMISSION LABS
113
+ ==============
114
+ ___ 04:37PM BLOOD WBC-6.9 RBC-4.67 Hgb-14.0 Hct-39.9*
115
+ MCV-85 MCH-30.0 MCHC-35.1 RDW-13.4 RDWSD-42.3 Plt ___
116
+ ___ 04:37PM BLOOD Glucose-124* UreaN-34* Creat-1.9*#
117
+ Na-128* K-4.6 Cl-89* HCO3-25 AnGap-14
118
+ ___ 04:37PM BLOOD ALT-274* AST-538* AlkPhos-71 TotBili-1.6*
119
+ DirBili-0.6* IndBili-1.0
120
+ ___ 04:03PM BLOOD calTIBC-157* Ferritn-4264* TRF-121*
121
+
122
+ DISCHARGE LABS
123
+ ==============
124
+ ___ 06:52AM BLOOD WBC-7.4 RBC-3.31* Hgb-9.9* Hct-30.3*
125
+ MCV-92 MCH-29.9 MCHC-32.7 RDW-14.6 RDWSD-48.6* Plt ___
126
+ ___ 06:52AM BLOOD Glucose-110* UreaN-9 Creat-0.7 Na-139
127
+ K-4.2 Cl-105 HCO3-23 AnGap-11
128
+ ___ 06:52AM BLOOD ALT-98* AST-95* LD(LDH)-310* AlkPhos-74
129
+ TotBili-0.5
130
+ ___ 06:52AM BLOOD Albumin-2.6* Calcium-8.2* Phos-3.0 Mg-1.7
131
+ ___ 06:33AM BLOOD Ferritn-876*
132
+
133
+ RELEVANT IMAGING
134
+ ================
135
+ IMPRESSION:
136
+ Pre-existing pneumonia in the left upper and lower lobes,
137
+ attributed to
138
+ Legionella, as per OMR notes. No evidence of parenchymal
139
+ abscesses or
140
+ empyemas. Small mediastinal lymph nodes are likely reactive.
141
+
142
+ RELEVANT MICRO
143
+ ==============
144
+ ___ 5:00 pm URINE TAKEN FROM ___.
145
+
146
+ **FINAL REPORT ___
147
+
148
+ Legionella Urinary Antigen (Final ___:
149
+ PRESUMPTIVE POSITIVE FOR LEGIONELLA SEROGROUP 1 ANTIGEN.
150
+ (Reference Range-Negative).
151
+
152
+
153
+ Brief Hospital Course:
154
+ SUMMARY
155
+ =======
156
+ Mr. ___ is a ___ y/o M w/ no significant past medical
157
+ history presented with Legionnaires disease c/b hyponatremia,
158
+ transaminitis, and an episode of tachyarrythmia. He was treated
159
+ with IV Levofloxacin and transitioned to PO with resolution of
160
+ fevers.
161
+
162
+ ACUTE/ACTIVE ISSUES
163
+ ===================
164
+ # Legionnaires Disease
165
+ Presented with 2 weeks diarrhea, found to have pneumonia on CT,
166
+ diagnosis of legionella confirmed by urine antigen (99%
167
+ specific). Also found to have hyponatremia, hypophosphatemia,
168
+ transaminitis, and hyperferritinemia, all classically associated
169
+ with legionella. The source of infection is unclear based on
170
+ housing/occupational history, but health dept was alerted for
171
+ further investigation into water source. ID was consulted and IV
172
+ levofloxacin was initiated. Imaging of his chest was obtained on
173
+ day 5 due to ongoing fevers over 103. CT ruled out empyema. Skin
174
+ exam was negative for extrapulmonary lesions. Echo was
175
+ reassuring against endocarditis. He was switched to PO
176
+ levofloxacin once fevers defervesced and he clinically imrpoved
177
+ on day 7. EKGs were obtained daily which showed mild QTc
178
+ prolongation likely due to levofloxacin and inflammation, but
179
+ never >500. He was discharged home with PO levofloxacin in order
180
+ to complete total 2 week course (final dose on ___.
181
+ [] Patient will need to complete a total of 2 weeks of
182
+ antibiotics with levofloxacin. His last dose of medication will
183
+ be on ___.
184
+ [] Patient should have repeat lung imaging in ___ weeks after
185
+ completion of antibiotics in order to ensure resolution of his
186
+ pneumonia.
187
+
188
+ # Tachyarrhythmia
189
+ Mr ___ had one sustained episode of narrow complex SVT to
190
+ 140s, throughout which he was asymptomatic. The arrythmia
191
+ resolved without intervention. EKG was obtained which was
192
+ concerining for A Fib vs AVNRT. Chads vasc score is 0, so no
193
+ anticoagulation indicated. He was also found to have orthostatic
194
+ hypotension to 77/53 suggesting hypovolemia as etiology, but
195
+ given his ample urine output with low urine osms, and his
196
+ persistent tachycardia despite IV fluid repletion, dehydration
197
+ was felt to be unlikely cause. No sign of hypovolemia from blood
198
+ or other fluid losses. Echo reassuring against
199
+ structural/functional cardiac abnormalities. CTA was negative
200
+ for PE. TSH was not consistent with thyrotoxicosis. Cortisol was
201
+ 15.1. Cardiology was consulted, and also had difficulty
202
+ differentiating his tachyarrhythmia. He was discharged with a
203
+ Ziopatch for 1 month monitoring as an outpatient.
204
+ [] Patient is being discharge with a Ziopatch for 1 month of
205
+ monitoring. This should be followed up by his PCP.
206
+
207
+ # Anemia
208
+ Hgb downtrended throughout admission, most likely acute phase
209
+ reaction from inflammation. Hemolysis labs were negative, making
210
+ AIHA triggered by legionella or levofloxacin unlikely. Guiac was
211
+ obtained to assess for occult GI bleeding, but was negative.
212
+ Improved prior to discharge.
213
+
214
+ # Transaminitis
215
+ Consistent with legionella infection as above. Not thought to be
216
+ related to previous history of alcohol use. Tested negative for
217
+ leptospirosis, Hepatitis A/B/C, and HIV. ALT and AST downtrended
218
+ with treatment of legionella infection. Continue to follow in an
219
+ outpatient setting.
220
+ [] Patient will require repeat LFTs prior to his appointment on
221
+ ___.
222
+
223
+ # Hyponatremia
224
+ Consistent with legionella, and likely some component of
225
+ hypovolemia based on urine lytes on admission. Improved with
226
+ increased PO intake.
227
+
228
+ # Diarrhea
229
+ Patient presented with 2 weeks of diarrhea likely related to
230
+ Legionella infection which quickly resolved with initiation of
231
+ levofloxacin. Negative for C Diff, HIV, and Hep A. He was
232
+ treated with IV fluids and phospate repletion.
233
+
234
+ # ___
235
+ Pre-renal, with urine lytes demonstrating high osm and low
236
+ sodium. Likely due to dehydration from diarrhea and low PO
237
+ intake in setting of legionella. Resolved with IVF.
238
+
239
+ TRANSITIONAL ISSUES
240
+ ===================
241
+ [] Patient has an appointment to establish care with a new PCP
242
+ on discharge. He would benefit from more regular screening of
243
+ his healthcare maintenance.
244
+ [] Patient will need to complete a total of 2 weeks of
245
+ antibiotics with levofloxacin. His last dose of medication will
246
+ be on ___.
247
+ [] Patient should have repeat lung imaging in ___ weeks after
248
+ completion of antibiotics in order to ensure resolution of his
249
+ pneumonia.
250
+ [] Patient was incidentally noted to have a Right Thyroid Nodule
251
+ of 17mm. It should be further evaluated with ultrasound of the
252
+ thyroid.
253
+ [] Patient will require repeat LFTs prior to his appointment on
254
+ ___.
255
+ [] Patient is being discharge with a Ziopatch for 1 month of
256
+ monitoring. This should be followed up by his PCP.
257
+
258
+ Medications on Admission:
259
+ The Preadmission Medication list is accurate and complete.
260
+ 1. This patient is not taking any preadmission medications
261
+
262
+
263
+ Discharge Medications:
264
+ 1. LevoFLOXacin 750 mg PO DAILY
265
+ RX *levofloxacin 750 mg 1 tablet(s) by mouth once a day Disp #*2
266
+ Tablet Refills:*0
267
+ 2.Outpatient Lab Work
268
+ ICD-9 Code: ___
269
+ Contact: ___ phone: ___ fax: ___
270
+ Labs: Basic Metabolic Panel, Liver Function Tests
271
+
272
+
273
+ Discharge Disposition:
274
+ Home
275
+
276
+ Discharge Diagnosis:
277
+ PRIMARY
278
+ =======
279
+ Legionella Pneumonia
280
+
281
+ SECONDARY
282
+ =========
283
+ Hyponatremia
284
+ Transaminits
285
+ Tachyarrhythmia
286
+
287
+
288
+ Discharge Condition:
289
+ Mental Status: Clear and coherent.
290
+ Level of Consciousness: Alert and interactive.
291
+ Activity Status: Ambulatory - Independent.
292
+
293
+
294
+ Discharge Instructions:
295
+ ======================
296
+ DISCHARGE INSTRUCTIONS
297
+ ======================
298
+ Dear Mr. ___,
299
+
300
+ It was a pleasure caring for you at ___
301
+ ___.
302
+
303
+ WHY WAS I IN THE HOSPITAL?
304
+ - You came to the hospital with fatigue and diarrhea. You were
305
+ found to have an infection called legionella.
306
+
307
+ WHAT HAPPENED TO ME IN THE HOSPITAL?
308
+ - We performed lab tests and imaging to diagnose the infection.
309
+ - You were treated with an antibiotic called levofloxacin
310
+ through an IV and transitioned to the oral version. You were
311
+ given IV fluids because you were dehydrated.
312
+ - Your heart was found to be beating quickly. In order to better
313
+ evaluate this, we gave you a monitor to wear for 1 month. You
314
+ should continue to follow up with your doctor about this.
315
+
316
+ WHAT SHOULD I DO AFTER I LEAVE THE HOSPITAL?
317
+ - You will need to continue taking antibiotics at home until
318
+ ___.
319
+ - Please get blood work done prior to your primary care
320
+ appointment on ___
321
+ - Continue to take all your medicines and keep your
322
+ appointments.
323
+
324
+ We wish you the best!
325
+
326
+ Sincerely,
327
+ Your ___ Team
328
+
329
+
330
+ Followup Instructions:
331
+ ___
332
+
333
+
334
+ [RADIOLOGY] EXAMINATION: CHEST (PA AND LAT)
335
+
336
+ INDICATION: History: ___ with fever, eval cause// History: ___ with fever,
337
+ eval cause
338
+
339
+ TECHNIQUE: Chest AP and lateral
340
+
341
+ COMPARISON: Chest radiograph dated ___.
342
+ CT abdomen pelvis performed on the same date.
343
+
344
+ FINDINGS:
345
+
346
+ There is a moderately extensive lateral left midlung consolidation most
347
+ consistent with pneumonia involving the left upper lobe. Suspected bulla at
348
+ each lung apex new since the remote prior study. There is no visible
349
+ pneumothorax. Trace possible pleural effusions. Cardiac, mediastinal and
350
+ hilar contours appear stable. Bony structures are unremarkable.
351
+
352
+ IMPRESSION:
353
+
354
+ Consolidation in the left upper lobe most consistent with pneumonia.
355
+
356
+ RECOMMENDATION(S): Follow-up radiographs are recommended to show resolution
357
+ within approximately 8 weeks.
358
+
359
+
360
+ [RADIOLOGY] EXAMINATION: LIVER OR GALLBLADDER US (SINGLE ORGAN)
361
+
362
+ INDICATION: History: ___ with PMHx etOH use disorder p/w fever, diarrhea,
363
+ transaminitis. Eval for cirrhosis, PVT, if cirrhosis eval abdomen for tappable
364
+ ascites// History: ___ with PMHx etOH use disorder p/w fever, diarrhea,
365
+ transaminitis. Eval for cirrhosis, PVT, if cirrhosis eval abdomen for tappable
366
+ ascites
367
+
368
+ TECHNIQUE: Grey scale and color Doppler ultrasound images of the abdomen were
369
+ obtained.
370
+
371
+ COMPARISON: None.
372
+
373
+ FINDINGS:
374
+
375
+ LIVER: The hepatic parenchyma appears within normal limits. The contour of the
376
+ liver is smooth. There is no focal liver mass. The main portal vein is patent
377
+ with hepatopetal flow. Normal color flow and waveforms are also seen in the
378
+ left portal vein, anterior right portal vein and posterior portal veins.
379
+ There is no ascites.
380
+
381
+ BILE DUCTS: There is no intrahepatic biliary dilation.
382
+ CHD: 2 mm
383
+
384
+ GALLBLADDER: There is no evidence of stones or gallbladder wall thickening.
385
+
386
+ PANCREAS: The head, body, and tail of the pancreas are within normal limits,
387
+ without masses or pancreatic ductal dilatation.
388
+
389
+ SPLEEN: Normal echogenicity.
390
+ Spleen length: 9.5 cm
391
+
392
+ KIDNEYS: Limited views of the kidneys show no hydronephrosis.
393
+
394
+ RETROPERITONEUM: The visualized portions of aorta and IVC are within normal
395
+ limits.
396
+
397
+ IMPRESSION:
398
+
399
+
400
+ 1. Normal abdominal ultrasound.
401
+ 2. No evidence of ascites. The portal veins are patent.
402
+
403
+
404
+ [RADIOLOGY] EXAMINATION: CT ABD AND PELVIS W/O CONTRAST
405
+
406
+ INDICATION: NO_PO contrast; History: ___ with fever, seen here 1 week ago for
407
+ L inguinal hernia eval cause feverNO_PO contrast// History: ___ with fever,
408
+ seen here 1 week ago for L inguinal hernia eval cause fever
409
+
410
+ TECHNIQUE: Multidetector CT images of the abdomen and pelvis were acquired
411
+ without intravenous contrast. Non-contrast scan has several limitations in
412
+ detecting vascular and parenchymal organ abnormalities, including tumor
413
+ detection.
414
+ Oral contrast was not administered.
415
+ Coronal and sagittal reformations were performed and reviewed on PACS.
416
+
417
+ DOSE: Acquisition sequence:
418
+ 1) Spiral Acquisition 6.5 s, 51.1 cm; CTDIvol = 10.0 mGy (Body) DLP = 507.9
419
+ mGy-cm.
420
+ Total DLP (Body) = 508 mGy-cm.
421
+
422
+ COMPARISON: None.
423
+
424
+ FINDINGS:
425
+
426
+ LOWER CHEST: Partially visualized is dense consolidation within the inferior
427
+ aspect of the left upper lobe (2:1) corresponding to the lingula. Trace
428
+ left-sided pleural effusion. Heart is borderline in size.
429
+
430
+ ABDOMEN:
431
+
432
+ HEPATOBILIARY: The liver demonstrates homogeneous attenuation throughout.
433
+ There is no evidence of focal lesions within the limitations of an unenhanced
434
+ scan. There is no evidence of intrahepatic or extrahepatic biliary
435
+ dilatation. The gallbladder is within normal limits.
436
+
437
+ PANCREAS: The pancreas has normal attenuation throughout, without evidence of
438
+ focal lesions within the limitations of an unenhanced scan. There is no
439
+ pancreatic ductal dilatation. There is no peripancreatic stranding.
440
+
441
+ SPLEEN: The spleen shows normal size and attenuation throughout, without
442
+ evidence of focal lesions.
443
+
444
+ ADRENALS: The right and left adrenal glands are normal in size and shape.
445
+
446
+ URINARY: The kidneys are of normal and symmetric size. Minimal focus of
447
+ calcification along the right lower pole. There is no evidence of focal renal
448
+ lesions within the limitations of an unenhanced scan. There is no
449
+ hydronephrosis. There is no nephrolithiasis. There is no perinephric
450
+ abnormality.
451
+
452
+ GASTROINTESTINAL: The stomach is unremarkable. Small bowel loops demonstrate
453
+ normal caliber, wall thickness, and enhancement throughout. The colon and
454
+ rectum are within normal limits. The appendix is not visualized.
455
+
456
+ PELVIS: The urinary bladder and distal ureters are unremarkable. There is no
457
+ free fluid in the pelvis.
458
+
459
+ REPRODUCTIVE ORGANS: The prostate gland is mildly enlarged measuring up to 5.4
460
+ cm in transverse dimension (2:77).
461
+
462
+ LYMPH NODES: There is no retroperitoneal or mesenteric lymphadenopathy. There
463
+ is no pelvic or inguinal lymphadenopathy.
464
+
465
+ VASCULAR: There is no abdominal aortic aneurysm. Mild atherosclerotic disease
466
+ is noted.
467
+
468
+ BONES: There are moderate degenerative changes in the right hip with loss of
469
+ joint space with subchondral cystic change and sclerosis. There is no
470
+ evidence of worrisome osseous lesions or acute fracture.
471
+
472
+ SOFT TISSUES: The abdominal and pelvic wall is within normal limits. The
473
+ study is not demonstrated definite left inguinal hernia. However, this study
474
+ was not performed with dynamic maneuvers to best evaluate for hernia.
475
+
476
+ IMPRESSION:
477
+
478
+
479
+ 1. Lingular pneumonia is partially visualized.
480
+ 2. No evidence of acute pathology in the abdomen or pelvis.
481
+
482
+
483
+ [RADIOLOGY] EXAMINATION: CHEST (PORTABLE AP)
484
+
485
+ INDICATION: ___ year old man with legionella, continued fevers on
486
+ antibtiotics// ?improvement/?empyema ?improvement/?empyema
487
+
488
+ IMPRESSION:
489
+
490
+ Comparison to ___. The previous consolidation in the left lateral
491
+ lung has substantially decreased. The periphery of the central consolidation
492
+ has been replaced by opacities, notably in the lower part of the left lower
493
+ lobe. There is no evidence of new parenchymal changes border lesions.
494
+ Borderline size of the cardiac silhouette without pulmonary edema. Stable
495
+ minimal right apical scarring.
496
+
497
+
498
+ [RADIOLOGY] EXAMINATION: CT CHEST W/CONTRAST
499
+
500
+ INDICATION: ___ year old man with legionnaires' disease, and worsening
501
+ infection// ? empyema
502
+
503
+ TECHNIQUE: Multi detector helical scanning of the chest was coordinated with
504
+ intravenous infusion of nonionic iodinated contrast agent and reconstructed as
505
+ 5 and 1.25 mm thick axial, 2.5 mm thick coronal and parasagittal, and 8 mm MIP
506
+ axial images. All images were reviewed.
507
+
508
+ DOSE: Acquisition sequence:
509
+ 1) Spiral Acquisition 9.9 s, 37.9 cm; CTDIvol = 6.3 mGy (Body) DLP = 229.0
510
+ mGy-cm.
511
+ Total DLP (Body) = 243 mGy-cm.
512
+
513
+ COMPARISON: None available.
514
+
515
+ FINDINGS:
516
+
517
+ NECK, THORACIC INLET, AXILLAE AND CHEST WALL:
518
+ Heterogeneous thyroid with a nodule in the right lobe measuring 1.7 cm (3:4).
519
+ No enlarged lymph nodes in either axilla or thoracic inlet. No abnormalities
520
+ on the chest wall. No atherosclerotic calcifications in the head and neck
521
+ arteries.
522
+
523
+ HEART AND VASCULATURE:
524
+ The heart is normal in size and shape. No pericardial effusion. No
525
+ atherosclerotic calcifications in the coronary arteries, cardiac valves or
526
+ aorta. The aorta and pulmonary arteries are normal in caliber throughout.
527
+
528
+ MEDIASTINUM AND HILA:
529
+ The esophagus is unremarkable. Small mediastinal lymph nodes, none
530
+ pathologically enlarged by CT size criteria, for example in the prevascular
531
+ station measuring 0.7 cm in short axis diameter (03:23) and in the right upper
532
+ paratracheal station measuring 0.8 cm (3:8). No hilar lymphadenopathy.
533
+
534
+ PLEURA:
535
+ No pleural effusions. Paraseptal bullae in both apices. No evidence of an
536
+ empyema.
537
+
538
+ LUNGS:
539
+ The airways are patent to the subsegmental levels. No bronchial wall
540
+ thickening, bronchiectasis or mucus plugging. Mild centrilobular emphysema.
541
+ Consolidation with air bronchograms noted in the left upper lobe associated to
542
+ areas of ground-glass opacities peripherally in the left upper and lower
543
+ lobes. No suspicious lung nodules or masses. No parenchymal abscesses.
544
+
545
+ CHEST CAGE:
546
+ No acute fractures. Mild dorsal spondylosis. No suspicious lytic or sclerotic
547
+ lesions.
548
+
549
+ UPPER ABDOMEN:
550
+ The limited sections of the upper abdomen show no significant abnormal
551
+ findings.
552
+
553
+
554
+ IMPRESSION:
555
+
556
+ Pre-existing pneumonia in the left upper and lower lobes, attributed to
557
+ Legionella, as per OMR notes. No evidence of parenchymal abscesses or
558
+ empyemas. Small mediastinal lymph nodes are likely reactive.
559
+
560
+
561
+ [RADIOLOGY] EXAMINATION: CTA CHEST Q416
562
+
563
+ INDICATION: ___ year old man with h/o legionairres, c/b persistent tachycardia
564
+ of unclear etiology// r/o PE
565
+
566
+ TECHNIQUE: Multidetector CT images of the chest were obtained with
567
+ intravenous contrast in the pulmonary arterial phase. Sagittal and coronal
568
+ reformations also performed and, in addition, axial and bilateral oblique MIP
569
+ reformations.
570
+
571
+ DOSE: Acquisition sequence:
572
+ 1) Spiral Acquisition 3.0 s, 39.2 cm; CTDIvol = 5.8 mGy (Body) DLP = 226.0
573
+ mGy-cm.
574
+ 2) Stationary Acquisition 0.6 s, 0.5 cm; CTDIvol = 2.1 mGy (Body) DLP = 1.1
575
+ mGy-cm.
576
+ 3) Stationary Acquisition 4.8 s, 0.5 cm; CTDIvol = 16.9 mGy (Body) DLP =
577
+ 8.5 mGy-cm.
578
+ Total DLP (Body) = 236 mGy-cm.
579
+
580
+ COMPARISON: Chest CT is available from ___.
581
+
582
+ FINDINGS:
583
+
584
+ Heart is mildly enlarged. Aorta is normal in caliber. No evidence of acute
585
+ aortic syndrome.
586
+
587
+ No filling defects are identified among pulmonary arterial branches.
588
+
589
+ Again noted is nodule along the posterior right lobe of the thyroid that was
590
+ better depicted before. This is hard to define but probably measures about 17
591
+ mm.
592
+
593
+ Mildly enlarged left-sided mediastinal and hilar lymph nodes are likely
594
+ reactive to infection and unchanged. Trace pleural effusion on the left only.
595
+ No definite right-sided pleural effusion. No pericardial effusion.
596
+
597
+ Again noted is bullous changes at each lung apex in the setting of what is,
598
+ more generally, mild to moderate emphysema.
599
+
600
+ Opacities at each lung base, left greater than right, suggest atelectasis,
601
+ which seems more likely than pneumonia. The left basilar dependent opacity
602
+ has mildly increased. In the left upper lobe, moderately extensive
603
+ consolidation centered in the lingula with air bronchograms has not
604
+ significantly changed over the short interval.
605
+
606
+ Limited views of the upper abdomen are unremarkable.
607
+
608
+ There are no suspicious bone lesions. Vertebral bodies are preserved in
609
+ height.
610
+
611
+ IMPRESSION:
612
+
613
+ 1. Unchanged consolidation centered in the lingula most consistent with
614
+ pneumonia. Mild increase in dependent opacification in the left lower lobe,
615
+ although the this latter regions seems more likely to reflect atelectasis than
616
+ involvement with pneumonia.
617
+
618
+ 2. No evidence of pulmonary embolism.
619
+
620
+ 3. Right lobe thyroid nodule.
621
+
622
+ RECOMMENDATION(S): Follow-up thyroid ultrasound is recommended when
623
+ clinically appropriate to assess 80 right thyroid nodule.
624
+
625
+ PROCEDURES (readable):
626
+ - None
627
+
628
+ DIAGNOSES (readable):
629
+ - A481 (ICD-10) — Legionnaires' disease
630
+ - N179 (ICD-10) — Acute kidney failure, unspecified
631
+ - E871 (ICD-10) — Hypo-osmolality and hyponatremia
632
+ - E440 (ICD-10) — Moderate protein-calorie malnutrition
633
+ - E860 (ICD-10) — Dehydration
634
+ - E8339 (ICD-10) — Other disorders of phosphorus metabolism
635
+ - I480 (ICD-10) — Paroxysmal atrial fibrillation
636
+ - R197 (ICD-10) — Diarrhea, unspecified
637
+ - D649 (ICD-10) — Anemia, unspecified
638
+ - E041 (ICD-10) — Nontoxic single thyroid nodule
639
+ - F1011 (ICD-10) — Alcohol abuse, in remission
640
+ - Z87891 (ICD-10) — Personal history of nicotine dependence
641
+ - Z6820 (ICD-10) — Body mass index (BMI) 20.0-20.9, adult
642
+
643
+ LAB ITEMS (readable, deduped):
644
+ - ARCH-1 (Item 51564)
645
+ - Absolute Basophil Count (Item 52069)
646
+ - Absolute Eosinophil Count (Item 52073)
647
+ - Absolute Lymphocyte Count (Item 51133)
648
+ - Absolute Monocyte Count (Item 52074)
649
+ - Absolute Neutrophil Count (Item 52075)
650
+ - Alanine Aminotransferase (ALT) (Item 50861)
651
+ - Albumin (Item 50862)
652
+ - Alkaline Phosphatase (Item 50863)
653
+ - Anion Gap (Item 50868)
654
+ - Asparate Aminotransferase (AST) (Item 50878)
655
+ - Bacteria (Item 51463)
656
+ - Base Excess (Item 50802)
657
+ - Basophils (Item 51146)
658
+ - Bicarbonate (Item 50882)
659
+ - Bilirubin (Item 51464)
660
+ - Bilirubin, Direct (Item 50883)
661
+ - Bilirubin, Indirect (Item 50884)
662
+ - Bilirubin, Total (Item 50885)
663
+ - Blood (Item 51466)
664
+ - C-Reactive Protein (Item 50889)
665
+ - Calcium, Total (Item 50893)
666
+ - Calculated Total CO2 (Item 50804)
667
+ - Chloride (Item 50902)
668
+ - Cortisol (Item 50909)
669
+ - Creatinine (Item 50912)
670
+ - Creatinine, Urine (Item 51082)
671
+ - Eosinophils (Item 51200)
672
+ - Epithelial Cells (Item 51476)
673
+ - Estimated GFR (MDRD equation) (Item 50920)
674
+ - Ferritin (Item 50924)
675
+ - Glucose (Item 50931)
676
+ - Glucose (Item 51478)
677
+ - Granular Casts (Item 51479)
678
+ - H (Item 50934)
679
+ - HIV Screen (Item 53153)
680
+ - HPE1 (Item 51657)
681
+ - HPE2 (Item 51658)
682
+ - HPE3 (Item 51659)
683
+ - HPE6 (Item 51662)
684
+ - HPE7 (Item 51663)
685
+ - Haptoglobin (Item 50935)
686
+ - Hematocrit (Item 51221)
687
+ - Hemoglobin (Item 51222)
688
+ - Hepatitis A Virus IgM Antibody (Item 50938)
689
+ - Hepatitis B Surface Antibody (Item 50940)
690
+ - Hepatitis B Surface Antigen (Item 50941)
691
+ - Hepatitis B Virus Core Antibody (Item 50942)
692
+ - Hepatitis C Virus Antibody (Item 50943)
693
+ - Hyaline Casts (Item 51482)
694
+ - I (Item 50947)
695
+ - INR(PT) (Item 51237)
696
+ - Immature Granulocytes (Item 52135)
697
+ - Iron (Item 50952)
698
+ - Iron Binding Capacity, Total (Item 50953)
699
+ - Ketone (Item 51484)
700
+ - L (Item 51678)
701
+ - Lactate (Item 50813)
702
+ - Lactate Dehydrogenase (LD) (Item 50954)
703
+ - Length of Urine Collection (Item 51087)
704
+ - Leukocytes (Item 51486)
705
+ - Lymphocytes (Item 51244)
706
+ - MCH (Item 51248)
707
+ - MCHC (Item 51249)
708
+ - MCV (Item 51250)
709
+ - Magnesium (Item 50960)
710
+ - Monocytes (Item 51254)
711
+ - NTproBNP (Item 50963)
712
+ - Neutrophils (Item 51256)
713
+ - Nitrite (Item 51487)
714
+ - Osmolality, Measured (Item 50964)
715
+ - Osmolality, Urine (Item 51093)
716
+ - PT (Item 51274)
717
+ - PTT (Item 51275)
718
+ - Phosphate (Item 50970)
719
+ - Platelet Count (Item 51265)
720
+ - Potassium (Item 50971)
721
+ - Problem Specimen (Item 51706)
722
+ - Protein (Item 51492)
723
+ - Protein/Creatinine Ratio (Item 51099)
724
+ - RBC (Item 51493)
725
+ - RBC Morphology (Item 52171)
726
+ - RDW (Item 51277)
727
+ - RDW-SD (Item 52172)
728
+ - Red Blood Cells (Item 51279)
729
+ - Red Top Hold (Item 50979)
730
+ - Reticulocyte Count, Absolute (Item 51282)
731
+ - Reticulocyte Count, Automated (Item 51283)
732
+ - Sodium (Item 50983)
733
+ - Sodium, Urine (Item 51100)
734
+ - Specific Gravity (Item 51498)
735
+ - Specimen Type (Item 52033)
736
+ - Thyroid Stimulating Hormone (Item 50993)
737
+ - Total Protein, Urine (Item 51102)
738
+ - Transferrin (Item 50998)
739
+ - Uhold (Item 51103)
740
+ - Urea Nitrogen (Item 51006)
741
+ - Urine Appearance (Item 51506)
742
+ - Urine Color (Item 51508)
743
+ - Urine Mucous (Item 51512)
744
+ - Urobilinogen (Item 51514)
745
+ - WBC (Item 51516)
746
+ - White Blood Cells (Item 51301)
747
+ - Yeast (Item 51519)
748
+ - pCO2 (Item 50818)
749
+ - pH (Item 50820)
750
+ - pH (Item 51491)
751
+ - pO2 (Item 50821)
summaries/subject_11402775_hadm_25285222_summary.txt ADDED
@@ -0,0 +1,75 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ **PRE-OPERATIVE SUMMARY**
2
+
3
+ **Patient Information**
4
+
5
+ * Name: [Not provided]
6
+ * Age: 55
7
+ * Gender: Male
8
+ * Admission ID: 25285222
9
+ * Admission Type: Emergency Ward (EW)
10
+ * Admission Location: Physician Referral
11
+ * Discharge Location: Home
12
+ * Insurance: Other
13
+ * Race: Black/African American
14
+ * Marital Status: Single
15
+ * Language: English
16
+
17
+ **Diagnoses**
18
+
19
+ * ICD-10: A481 (Legionnaires' disease)
20
+ * ICD-10: N179 (Acute kidney failure, unspecified)
21
+ * ICD-10: E871 (Hypo-osmolality and hyponatremia)
22
+ * ICD-10: E440 (Moderate protein-calorie malnutrition)
23
+ * ICD-10: E860 (Dehydration)
24
+ * ICD-10: E8339 (Other disorders of phosphorus metabolism)
25
+ * ICD-10: I480 (Paroxysmal atrial fibrillation)
26
+ * ICD-10: R197 (Diarrhea, unspecified)
27
+ * ICD-10: D649 (Anemia, unspecified)
28
+ * ICD-10: E041 (Nontoxic single thyroid nodule)
29
+ * ICD-10: F1011 (Alcohol abuse, in remission)
30
+ * ICD-10: Z87891 (Personal history of nicotine dependence)
31
+ * ICD-10: Z6820 (Body mass index (BMI) 20.0-20.9, adult)
32
+
33
+ **Laboratory Results**
34
+
35
+ * Total laboratory events: 480
36
+ * Most frequent lab tests:
37
+ + Item ID 50934: 14 measurements
38
+ + Item ID 50947: 14 measurements
39
+ + Item ID 51678: 14 measurements
40
+ + Item ID 50868: 11 measurements
41
+ + Item ID 50882: 11 measurements
42
+
43
+ **Clinical Notes**
44
+
45
+ * The patient presented with fever, diarrhea, and fatigue, and was diagnosed with Legionnaires' disease.
46
+ * The patient had a history of alcohol use disorder and was found to have anemia, hypo-osmolality, and hyponatremia.
47
+ * The patient had a thyroid nodule and was found to have a paroxysmal atrial fibrillation.
48
+ * The patient had a history of nicotine dependence and a body mass index (BMI) of 20.0-20.9.
49
+
50
+ **Medications**
51
+
52
+ * LevoFLOXacin 750 mg PO daily
53
+
54
+ **Discharge Instructions**
55
+
56
+ * The patient should complete a total of 2 weeks of antibiotics with levofloxacin.
57
+ * The patient should have repeat lung imaging in 8 weeks after completion of antibiotics to ensure resolution of pneumonia.
58
+ * The patient should have repeat LFTs prior to their appointment on [date].
59
+ * The patient should follow up with their PCP and have a repeat thyroid ultrasound when clinically appropriate.
60
+
61
+ **Radiology Results**
62
+
63
+ * Chest X-ray: Pre-existing pneumonia in the left upper and lower lobes, attributed to Legionella.
64
+ * CT scan of the chest: Pre-existing pneumonia in the left upper and lower lobes, attributed to Legionella.
65
+ * Liver ultrasound: Normal abdominal ultrasound.
66
+ * CT scan of the abdomen and pelvis: No evidence of acute pathology in the abdomen or pelvis.
67
+ * Chest X-ray: Unchanged consolidation centered in the lingula most consistent with pneumonia.
68
+ * CT scan of the chest: Unchanged consolidation centered in the lingula most consistent with pneumonia.
69
+
70
+ **Other**
71
+
72
+ * The patient has an appointment to establish care with a new PCP on discharge.
73
+ * The patient should have repeat LFTs prior to their appointment on [date].
74
+ * The patient is being discharged with a Ziopatch for 1 month of monitoring.
75
+ * The patient should follow up with their PCP and have a repeat thyroid ultrasound when clinically appropriate.
summaries/subject_12991336_hadm_25464784_input.txt ADDED
@@ -0,0 +1,475 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ PRE-OPERATIVE SUMMARY INPUT (SINGLE ADMISSION):
2
+
3
+ PATIENT:
4
+ - Age: 70
5
+ - Gender: F
6
+
7
+ ADMISSION:
8
+ - Admission ID: 25464784
9
+ - Admission Type: SURGICAL SAME DAY ADMISSION
10
+ - Admission Location: PHYSICIAN REFERRAL
11
+ - Discharge Location: HOME HEALTH CARE
12
+ - Insurance: Medicare
13
+ - Race: WHITE
14
+ - Marital Status: MARRIED
15
+ - Language: ENGLISH
16
+
17
+ PROCEDURES (3 total):
18
+ - 3521 (ICD-9)
19
+ - 3961 (ICD-9)
20
+ - 3893 (ICD-9)
21
+
22
+ DIAGNOSES (3 total):
23
+ - 4241 (ICD-9)
24
+ - 9971 (ICD-9)
25
+ - 42731 (ICD-9)
26
+
27
+ LABORATORY RESULTS:
28
+ - Item ID 50802: 9 measurements, 2118-11-14 09:32:00 to 2118-11-14 17:22:00
29
+ - Item ID 50804: 9 measurements, 2118-11-14 09:32:00 to 2118-11-14 17:22:00
30
+ - Item ID 50806: 3 measurements, 2118-11-14 09:32:00 to 2118-11-14 12:29:00
31
+ - Item ID 50808: 8 measurements, 2118-11-14 09:32:00 to 2118-11-15 10:36:00
32
+ - Item ID 50809: 12 measurements, 2118-11-14 09:32:00 to 2118-11-15 10:36:00
33
+ - Item ID 50810: 5 measurements, 2118-11-14 09:32:00 to 2118-11-14 12:29:00
34
+ - Item ID 50811: 5 measurements, 2118-11-14 09:32:00 to 2118-11-14 12:29:00
35
+ - Item ID 50813: 5 measurements, 2118-11-14 09:32:00 to 2118-11-14 17:22:00
36
+ - Item ID 50817: 3 measurements, 2118-11-14 14:03:00 to 2118-11-14 17:22:00
37
+ - Item ID 50818: 9 measurements, 2118-11-14 09:32:00 to 2118-11-14 17:22:00
38
+ - Item ID 50820: 13 measurements, 2118-11-14 09:32:00 to 2118-11-15 10:36:00
39
+ - Item ID 50821: 9 measurements, 2118-11-14 09:32:00 to 2118-11-14 17:22:00
40
+ - Item ID 50822: 10 measurements, 2118-11-14 09:32:00 to 2118-11-15 10:36:00
41
+ - Item ID 50824: 4 measurements, 2118-11-14 09:32:00 to 2118-11-14 13:12:00
42
+ - Item ID 50861: 1 measurements, 2118-11-18 05:38:00 to 2118-11-18 05:38:00
43
+ - Item ID 50862: 1 measurements, 2118-11-18 05:38:00 to 2118-11-18 05:38:00
44
+ - Item ID 50863: 1 measurements, 2118-11-18 05:38:00 to 2118-11-18 05:38:00
45
+ - Item ID 50867: 1 measurements, 2118-11-18 05:38:00 to 2118-11-18 05:38:00
46
+ - Item ID 50868: 5 measurements, 2118-11-15 02:12:00 to 2118-11-19 10:26:00
47
+ - Item ID 50878: 1 measurements, 2118-11-18 05:38:00 to 2118-11-18 05:38:00
48
+ - Item ID 50882: 7 measurements, 2118-11-14 13:07:00 to 2118-11-19 10:26:00
49
+ - Item ID 50885: 1 measurements, 2118-11-18 05:38:00 to 2118-11-18 05:38:00
50
+ - Item ID 50893: 4 measurements, 2118-11-15 02:12:00 to 2118-11-18 05:38:00
51
+ - Item ID 50902: 6 measurements, 2118-11-14 13:07:00 to 2118-11-19 10:26:00
52
+ - Item ID 50912: 7 measurements, 2118-11-14 13:07:00 to 2118-11-19 10:26:00
53
+ - Item ID 50920: 1 measurements, 2118-11-14 13:07:00 to 2118-11-14 13:07:00
54
+ - Item ID 50931: 5 measurements, 2118-11-15 02:12:00 to 2118-11-19 10:26:00
55
+ - Item ID 50956: 1 measurements, 2118-11-18 05:38:00 to 2118-11-18 05:38:00
56
+ - Item ID 50960: 7 measurements, 2118-11-14 13:07:00 to 2118-11-19 10:26:00
57
+ - Item ID 50970: 3 measurements, 2118-11-15 02:12:00 to 2118-11-18 05:38:00
58
+ - Item ID 50971: 7 measurements, 2118-11-15 02:12:00 to 2118-11-19 10:26:00
59
+ - Item ID 50983: 7 measurements, 2118-11-15 02:12:00 to 2118-11-19 10:26:00
60
+ - Item ID 51006: 7 measurements, 2118-11-14 13:07:00 to 2118-11-19 10:26:00
61
+ - Item ID 51146: 1 measurements, 2118-11-14 11:57:00 to 2118-11-14 11:57:00
62
+ - Item ID 51200: 1 measurements, 2118-11-14 11:57:00 to 2118-11-14 11:57:00
63
+ - Item ID 51214: 1 measurements, 2118-11-14 11:57:00 to 2118-11-14 11:57:00
64
+ - Item ID 51221: 10 measurements, 2118-11-14 11:57:00 to 2118-11-19 10:26:00
65
+ - Item ID 51222: 7 measurements, 2118-11-14 11:57:00 to 2118-11-19 10:26:00
66
+ - Item ID 51237: 4 measurements, 2118-11-14 11:57:00 to 2118-11-19 10:26:00
67
+ - Item ID 51244: 1 measurements, 2118-11-14 11:57:00 to 2118-11-14 11:57:00
68
+ - Item ID 51248: 7 measurements, 2118-11-14 11:57:00 to 2118-11-19 10:26:00
69
+ - Item ID 51249: 7 measurements, 2118-11-14 11:57:00 to 2118-11-19 10:26:00
70
+ - Item ID 51250: 7 measurements, 2118-11-14 11:57:00 to 2118-11-19 10:26:00
71
+ - Item ID 51254: 1 measurements, 2118-11-14 11:57:00 to 2118-11-14 11:57:00
72
+ - Item ID 51256: 1 measurements, 2118-11-14 11:57:00 to 2118-11-14 11:57:00
73
+ - Item ID 51265: 7 measurements, 2118-11-14 11:57:00 to 2118-11-19 10:26:00
74
+ - Item ID 51274: 4 measurements, 2118-11-14 11:57:00 to 2118-11-19 10:26:00
75
+ - Item ID 51275: 2 measurements, 2118-11-14 11:57:00 to 2118-11-14 13:07:00
76
+ - Item ID 51277: 7 measurements, 2118-11-14 11:57:00 to 2118-11-19 10:26:00
77
+ - Item ID 51279: 7 measurements, 2118-11-14 11:57:00 to 2118-11-19 10:26:00
78
+ - Item ID 51301: 7 measurements, 2118-11-14 11:57:00 to 2118-11-19 10:26:00
79
+ - Item ID 52033: 13 measurements, 2118-11-14 09:32:00 to 2118-11-15 10:36:00
80
+
81
+ CLINICAL NOTES:
82
+ [DISCHARGE NOTE]
83
+ Name: ___ Unit No: ___
84
+
85
+ Admission Date: ___ Discharge Date: ___
86
+
87
+ Date of Birth: ___ Sex: F
88
+
89
+ Service: CARDIOTHORACIC
90
+
91
+ Allergies:
92
+ ___ recorded as having No Known Allergies to Drugs
93
+
94
+ Attending: ___.
95
+
96
+ Chief Complaint:
97
+ increasing chest tightness and SOB
98
+
99
+ Major Surgical or Invasive Procedure:
100
+ Aortic Valve Replacement ___
101
+
102
+
103
+ History of Present Illness:
104
+ Mrs. ___ is a ___ lady with
105
+ worsening symptoms of chest tightness, shortness of breath
106
+ related to documented critical aortic stenosis by
107
+ catheterization and echocardiography, presenting for aortic
108
+ valve replacement. Her coronary arteries were normal by
109
+ cardiac catheterization.
110
+
111
+
112
+ Past Medical History:
113
+ EF: 60% Cr: 0.8 Wt: 77.5K
114
+ PMH: RHD, AS, HTN, DJD(spine-lumbar/cervical), TIA, skin CA
115
+ PSH: Tonsillectomy, C-section x5, Bilat varicose vein stripping,
116
+ D&C, excision skin CA lesion
117
+
118
+
119
+ Social History:
120
+ ___
121
+ Family History:
122
+ Mother died age ___ RHF, Father died age ___ ruptured aneursym
123
+
124
+ Physical Exam:
125
+ general: well appearing robust female
126
+ VS; 98.6, 133/80, 74Sr, 20, 97RA
127
+ HEENT: unremarkable
128
+ Chest: sternal incision clean dry and intact. sternum stable.
129
+ COR: RRR S1, S2
130
+ ABD: soft, NT, ND, +BS
131
+ extrem: 2+ pedal edema bilat
132
+ Neuro: intact.
133
+
134
+
135
+ Pertinent Results:
136
+ ___ 11:57AM BLOOD WBC-8.0 RBC-2.36*# Hgb-7.9*# Hct-22.0*#
137
+ MCV-93 MCH-33.2* MCHC-35.7* RDW-12.9 Plt ___
138
+ ___ 01:00PM BLOOD WBC-14.2* RBC-3.02* Hgb-10.0* Hct-28.3*
139
+ MCV-94 MCH-33.0* MCHC-35.2* RDW-13.9 Plt ___
140
+ ___ 11:57AM BLOOD ___ PTT-36.4* ___
141
+ ___ 01:07PM BLOOD ___ PTT-38.7* ___
142
+ ___ 02:12AM BLOOD Glucose-137* UreaN-12 Creat-0.6 Na-132*
143
+ K-5.3* Cl-105 HCO3-23 AnGap-9
144
+ ___ 11:42AM BLOOD Glucose-107* UreaN-18 Creat-0.7 Na-129*
145
+ K-4.4 Cl-98 HCO3-25 AnGap-10
146
+
147
+
148
+ ___ ECHOCARDIOGRAPHY REPORT
149
+
150
+ ___ ___ MRN: ___ TEE (Complete)
151
+ Done ___ at 2:17:47 ___ FINAL
152
+ Referring Physician ___
153
+ ___.
154
+ ___, Division of Cardiothorac
155
+ ___ Status: Inpatient DOB: ___
156
+ Age (years): ___ F Hgt (in):
157
+ BP (mm Hg): / Wgt (lb):
158
+ HR (bpm): BSA (m2):
159
+ Indication: AVR
160
+ ICD-9 Codes: 786.05, 440.0, 424.1, 424.0
161
+ ___ Information
162
+ Date/Time: ___ at 14:17 ___ MD: ___, MD
163
+ ___ Type: TEE (Complete) Sonographer: ___, MD
164
+ Doppler: Full Doppler and color Doppler ___ Location:
165
+ Anesthesia West OR cardiac
166
+ Contrast: None Tech Quality: Adequate
167
+ Tape #: ___-1: Machine: ___
168
+ ___ Measurements
169
+ Results Measurements Normal Range
170
+ Left Ventricle - Inferolateral Thickness: *1.2 cm 0.6 - 1.1 cm
171
+
172
+ Left Ventricle - Ejection Fraction: 40% to 45% >= 55%
173
+ Left Ventricle - Peak Resting LVOT gradient: 1 mm Hg <= 10 mm
174
+ Hg
175
+ Aorta - Ascending: 3.1 cm <= 3.4 cm
176
+ Aorta - Descending Thoracic: 2.1 cm <= 2.5 cm
177
+ Aortic Valve - Peak Velocity: *3.2 m/sec <= 2.0 m/sec
178
+ Aortic Valve - Peak Gradient: *40 mm Hg < 20 mm Hg
179
+ Aortic Valve - Mean Gradient: 27 mm Hg
180
+ Aortic Valve - Valve Area: *0.4 cm2 >= 3.0 cm2
181
+ Mitral Valve - Peak Velocity: 0.7 m/sec
182
+ Mitral Valve - Pressure Half Time: ___ ms
183
+ Mitral Valve - MVA (P ___ T): 3.4 cm2
184
+
185
+ Findings
186
+ RIGHT ATRIUM/INTERATRIAL SEPTUM: No spontaneous echo contrast in
187
+ the body of the RA. No mass or thrombus in the RA or RAA. No ASD
188
+ by 2D or color Doppler.
189
+
190
+ LEFT VENTRICLE: Mild symmetric LVH with normal cavity size. Mild
191
+ symmetric LVH. Mildly depressed LVEF. No VSD.
192
+
193
+ LV WALL MOTION: Regional left ventricular wall motion findings
194
+ as shown below; remaining LV segments contract normally.
195
+
196
+ RIGHT VENTRICLE: Normal RV chamber size and free wall motion.
197
+
198
+ AORTA: Normal diameter of aorta at the sinus, ascending and arch
199
+ levels. Normal ascending aorta diameter. Simple atheroma in
200
+ ascending aorta. Normal descending aorta diameter. Simple
201
+ atheroma in descending aorta.
202
+
203
+ AORTIC VALVE: Severely thickened/deformed aortic valve leaflets.
204
+ Severe AS (AoVA <0.8cm2). Mild (1+) AR.
205
+
206
+ MITRAL VALVE: Mildly thickened mitral valve leaflets. Mild (1+)
207
+ MR.
208
+
209
+ ___ VALVE: Normal tricuspid valve leaflets. Mild [1+] TR.
210
+
211
+ PULMONIC VALVE/PULMONARY ARTERY: Pulmonic valve not visualized.
212
+ No PS. Physiologic PR.
213
+
214
+ PERICARDIUM: No pericardial effusion.
215
+
216
+ GENERAL COMMENTS: A TEE was performed in the location listed
217
+ above. I certify I was present in compliance with ___
218
+ regulations. The ___ was under general anesthesia throughout
219
+ the procedure. The ___ received antibiotic prophylaxis. The
220
+ TEE probe was passed with assistance from the anesthesioology
221
+ staff using a laryngoscope. No TEE related complications.
222
+
223
+ REGIONAL LEFT VENTRICULAR WALL MOTION:
224
+
225
+
226
+
227
+
228
+
229
+ N = Normal, H = Hypokinetic, A = Akinetic, D = Dyskinetic
230
+ Conclusions
231
+ Pre-CPB:
232
+ No spontaneous echo contrast is seen in the body of the right
233
+ atrium. No mass or thrombus is seen in the right or left atrium
234
+ or left atrial appendage. No atrial septal defect is seen by 2D
235
+ or color Doppler. There is mild symmetric left ventricular
236
+ hypertrophy with normal cavity size. Overall left ventricular
237
+ systolic function is mildly depressed (LVEF= 40 - 45%). There is
238
+ no ventricular septal defect. The remaining left ventricular
239
+ segments contract normally. Right ventricular chamber size and
240
+ free wall motion are normal. The diameters of aorta of the
241
+ descending, ascending and arch levels are normal. There are
242
+ simple atheroma in the descending thoracic aorta. The aortic
243
+ valve leaflets are severely thickened/deformed. There is severe
244
+ aortic valve stenosis (area <0.8cm2). Mild (1+) aortic
245
+ regurgitation is seen. The mitral valve leaflets are mildly
246
+ thickened. Mild (1+) mitral regurgitation is seen. There is no
247
+ pericardial effusion.
248
+
249
+ Post-CPB:
250
+ Aortic prosthesis in place, no AI, no perivalvular leak seen. AV
251
+ mean gradient 11 mm Hg. Ascending and descending thoracic aorta
252
+ free of dissection. No new mitral regugitation.
253
+ I certify that I was present for this procedure in compliance
254
+ with ___ regulations.
255
+
256
+ Electronically signed by ___, MD, Interpreting
257
+ physician ___ ___ 15:16
258
+
259
+
260
+
261
+ Brief Hospital Course:
262
+ Pt was admitted and taken to the OR for Aortic valve replacement
263
+ with a 23-mm
264
+ Mosaic porcine tissue valve for critical aortic stenosis. See
265
+ operative notes for details. Pt was admitted to the CVICU for
266
+ post operative invasive hemodynamic monitoring. Pt was extubated
267
+ on POD 0. Transferred from the ICU to the telemetry unit for
268
+ ongoing post operative care on POD#2. she was rec'ing lopressor
269
+ and diuresis. On the eve POD#2 Mrs. ___ developed afib and was
270
+ started on amiodarone gtt. She converted to SR and after
271
+ completion of IV amiodarone was started on a po regimen. Atrial
272
+ fibrillation recurred and the ___ was started on coumadin.
273
+ Of note, pt was borderline hyponatremic on admit which persisted
274
+ throughout her hospital stay - the lowest NA was 128 and the
275
+ highest was 132. She was placed on a free water restriction. She
276
+ progressed well and was ready for d/c home on POD#5.
277
+
278
+
279
+ Medications on Admission:
280
+ Benicar 30', Folate 1', Tramadol 50', Pidoxicam 20', Soma350',
281
+ MVI, VitE 200', Fish Oil 1200', Caltrate D 600', Lasix 20
282
+ q3days, ASA 325', Amoxicillin 2gm-prn
283
+
284
+ Discharge Medications:
285
+ 1. Docusate Sodium 100 mg Capsule Sig: One (1) Capsule PO BID (2
286
+ times a day) for 1 months.
287
+ Disp:*60 Capsule(s)* Refills:*0*
288
+ 2. Ranitidine HCl 150 mg Tablet Sig: One (1) Tablet PO BID (2
289
+ times a day) for 1 months.
290
+ Disp:*60 Tablet(s)* Refills:*0*
291
+ 3. Aspirin 81 mg Tablet, Delayed Release (E.C.) Sig: One (1)
292
+ Tablet, Delayed Release (E.C.) PO DAILY (Daily).
293
+ Disp:*30 Tablet, Delayed Release (E.C.)(s)* Refills:*0*
294
+ 4. Oxycodone-Acetaminophen ___ mg Tablet Sig: ___ Tablets PO
295
+ Q4H (every 4 hours) as needed for pain.
296
+ Disp:*60 Tablet(s)* Refills:*0*
297
+ 5. Acetaminophen 325 mg Tablet Sig: Two (2) Tablet PO Q4H (every
298
+ 4 hours) as needed.
299
+ 6. Folic Acid 1 mg Tablet Sig: One (1) Tablet PO DAILY (Daily).
300
+ Disp:*30 Tablet(s)* Refills:*0*
301
+ 7. Multivitamin Tablet Sig: One (1) Tablet PO DAILY (Daily).
302
+ Disp:*30 Tablet(s)* Refills:*0*
303
+ 8. Amiodarone 200 mg Tablet Sig: Two (2) Tablet PO BID (2 times
304
+ a day): 400mg 2x/day x 7 days, then 200mg 2x/day x 7 days, then
305
+ 200mg/day until further instructed.
306
+ Disp:*120 Tablet(s)* Refills:*2*
307
+ 9. Metoprolol Tartrate 25 mg Tablet Sig: One (1) Tablet PO BID
308
+ (2 times a day).
309
+ Disp:*60 Tablet(s)* Refills:*0*
310
+ 10. Tramadol 50 mg Tablet Sig: One (1) Tablet PO Q4H (every 4
311
+ hours) as needed.
312
+ Disp:*40 Tablet(s)* Refills:*0*
313
+ 11. Carisoprodol 350 mg Tablet Sig: One (1) Tablet PO BID (2
314
+ times a day).
315
+ Disp:*60 Tablet(s)* Refills:*0*
316
+ 12. Piroxicam 20 mg Capsule Sig: One (1) Capsule PO once a day.
317
+ Disp:*30 Capsule(s)* Refills:*0*
318
+ 13. Furosemide 20 mg Tablet Sig: Two (2) Tablet PO once a day
319
+ for 2 weeks.
320
+ Disp:*28 Tablet(s)* Refills:*0*
321
+ 14. Potassium Chloride 20 mEq Tab Sust.Rel. Particle/Crystal
322
+ Sig: One (1) Tab Sust.Rel. Particle/Crystal PO twice a day for 2
323
+ weeks.
324
+ Disp:*28 Tab Sust.Rel. Particle/Crystal(s)* Refills:*0*
325
+ 15. Warfarin 5 mg Tablet Sig: One (1) Tablet PO once a day: Dr.
326
+ ___ to dose for goal INR ___. Dose will change.
327
+ Disp:*30 Tablet(s)* Refills:*2*
328
+
329
+
330
+ Discharge Disposition:
331
+ Home With Service
332
+
333
+ Facility:
334
+ ___.
335
+
336
+ Discharge Diagnosis:
337
+ s/p aortic valve replacement
338
+
339
+
340
+ Discharge Condition:
341
+ good
342
+
343
+
344
+ Discharge Instructions:
345
+ shower daily, no baths or swimming
346
+ no driving for 4 weeks and off all narcotics
347
+ no lifting more than 10 pounds for 10 weeks
348
+ no lotions, creams or powders to incisions
349
+ report any fever greater than 100.5
350
+ report any redness of, or drainage from incisions
351
+ report any weight gain greater than 2 pounds a day or 5 pounds a
352
+ week
353
+ take all medications as directed
354
+
355
+ Followup Instructions:
356
+ ___
357
+
358
+ [RADIOLOGY NOTE]
359
+ HISTORY: In comparison with the previous study, there has been an aortic
360
+ valve repair. Endotracheal tube lies approximately 1.5 cm above the carina.
361
+ Right IJ Swan-Ganz catheter extends to the right pulmonary artery at the
362
+ border with the mediastinum. Right chest tube is in place with no evidence of
363
+ pneumothorax. Nasogastric tube extends well into the stomach.
364
+
365
+ [RADIOLOGY NOTE]
366
+ CHEST RADIOGRAPH
367
+
368
+ INDICATION: Pleural effusion.
369
+
370
+ ___.
371
+
372
+ FINDINGS: As compared to the previous examination, the Swan-Ganz catheter has
373
+ been removed, the patient has been extubated, and the nasogastric tube has
374
+ been removed. On today's examination, there is no evidence of pneumothorax.
375
+ The right-sided chest tube is in unchanged position. Minimal increase in size
376
+ of the cardiac silhouette. Minimal left basal hypoventilation. No focal
377
+ parenchymal opacity suggestive of pneumonia.
378
+
379
+ [RADIOLOGY NOTE]
380
+ INDICATION: Patient is a ___ female with aortic valve replacement,
381
+ now needs PICC line for IV access. Please assess PICC positioning.
382
+
383
+ EXAMINATION: Single upright portable chest radiograph.
384
+
385
+ COMPARISONS: Comparison to chest radiograph from 7 a.m. on ___.
386
+
387
+ FINDINGS: There is interval placement of a left-sided PICC line whose tip
388
+ terminates within the right atrium. This line can be pulled back about 2.5
389
+ cm. There is a right internal jugular introducer catheter in stable position.
390
+ There is a right-sided chest tube with tip overlying the right base in
391
+ unchanged position. The patient is status post median sternotomy with
392
+ evidence of valve replacement. There is increase in left retrocardiac opacity
393
+ consistent with worsening atelectasis. The lungs are otherwise clear with no
394
+ signs of pneumonia or congestive heart failure. No pleural effusions or
395
+ pneumothorax is seen. The cardiac and mediastinal contours are stable. The
396
+ visualized osseous structures are unremarkable.
397
+
398
+ IMPRESSION: PICC line terminating within the right atrium. This can be
399
+ pulled back approximately 2.5 cm. Slightly worsening left lower lobe
400
+ atelectasis.
401
+
402
+ These findings were discussed with ___ at 11:30 a.m. on ___.
403
+
404
+ [RADIOLOGY NOTE]
405
+ PORTABLE UPRIGHT CHEST RADIOGRAPH
406
+
407
+ CLINICAL HISTORY: New right-sided chest pain with chest tube to waterseal.
408
+ Evaluate for pneumothorax or other process.
409
+
410
+ This examination is technically limited due to underpenetration from body
411
+ habitus or portable technique. No gross pneumothorax is seen, although
412
+ sensitivity is likely to be decreased secondary to limitations above. Right
413
+ basilar chest tube remains present. Left-sided PICC is present, although the
414
+ tip is not well visualized. Cardiac and mediastinal silhouettes remain
415
+ unchanged, with persistent retrocardiac opacity.
416
+
417
+ IMPRESSION:
418
+ 1. Technically limited examination, limiting assessment for pneumothorax.
419
+ No obvious pneumothorax.
420
+ 2. Persistent retrocardiac opacity at the left base, representing atelectasis
421
+ versus consolidation.
422
+
423
+ [RADIOLOGY NOTE]
424
+ HISTORY: ___ woman with removal of chest tube.
425
+
426
+ TECHNIQUE: Frontal and lateral radiographs of the chest at 4:13 p.m. compared
427
+ to prior at 9:41 a.m.
428
+
429
+ FINDINGS: In comparison to the prior examination, the right-sided chest tube
430
+ has been removed. A right apical pneumothorax is small. A left-sided central
431
+ venous catheter is in place, with the tip near the expected location of the
432
+ cavoatrial junction. Median sternotomy wires are in place. Consolidative
433
+ opacity at the left lung base obscures the medial aspect of the left
434
+ hemidiaphragm in retrocardiac location. Pleural effusions are moderate on the
435
+ left and small on the right. A prosthetic aortic valve is in place.
436
+
437
+ IMPRESSION:
438
+ 1. Small right apical pneumothorax status post removal of the right-sided
439
+ chest tube.
440
+ 2. Moderate left and small right pleural effusions.
441
+ 3. Left basilar opacity, which may represent atelectasis, consolidation, or
442
+ combination thereof.
443
+
444
+ [RADIOLOGY NOTE]
445
+ HISTORY: ___ woman with removal of chest tube.
446
+
447
+ TECHNIQUE: Single portable radiograph of the chest at 6:55 p.m. compared to
448
+ prior at 4:13 p.m.
449
+
450
+ FINDINGS:
451
+
452
+ In comparison to prior examination, there has been no significant interval
453
+ change. A small right apical pneumothorax is persistent. The consolidative
454
+ opacity in a retrocardiac location at the left lung base obscures the medial
455
+ aspect of the left hemidiaphragm. A left pleural effusion is present. A
456
+ left-sided PICC catheter terminates near the expected location of the
457
+ cavoatrial junction. Median sternotomy wires are in place.
458
+
459
+ IMPRESSION:
460
+ 1. Persistent small right apical pneumothorax.
461
+ 2. Persistent left basilar opacity, which could represent consolidation,
462
+ atelectasis or combination thereof.
463
+ 3. Small to moderate left pleural effusion.
464
+
465
+ [RADIOLOGY NOTE]
466
+ HISTORY: Status post AVR. Follow up pneumothorax, effusion.
467
+
468
+ CHEST, SINGLE AP VIEW.
469
+
470
+ Compared with ___, no significant change is detected. Again seen is a very
471
+ small right apical pneumothorax. The cardiomediastinal silhouette,
472
+ retrocardiac density, and small bilateral pleural effusions are stable. No
473
+ CHF. Left subclavian PICC line unchanged, tip overlying mid/distal SVC.
474
+ Circular densities overlying the cardiac silhouette presumably represent the
475
+ patient's AVR.
summaries/subject_12991336_hadm_25464784_model_input.txt ADDED
@@ -0,0 +1,496 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ PRE-OPERATIVE SUMMARY INPUT (SINGLE ADMISSION):
2
+
3
+ PATIENT:
4
+ - Age: 70
5
+ - Gender: F
6
+
7
+ ADMISSION:
8
+ - Admission ID: 25464784
9
+ - Admission Type: SURGICAL SAME DAY ADMISSION
10
+ - Admission Location: PHYSICIAN REFERRAL
11
+ - Discharge Location: HOME HEALTH CARE
12
+ - Insurance: Medicare
13
+ - Race: WHITE
14
+ - Marital Status: MARRIED
15
+ - Language: ENGLISH
16
+
17
+ PROCEDURES (3 total):
18
+ 1. ICD-9: 3521
19
+ 2. ICD-9: 3961
20
+ 3. ICD-9: 3893
21
+
22
+ DIAGNOSES (3 total):
23
+ 1. ICD-9: 4241
24
+ 2. ICD-9: 9971
25
+ 3. ICD-9: 42731
26
+
27
+ LABORATORY RESULTS:
28
+ Total laboratory events: 272
29
+ Most frequent lab tests:
30
+ - Item ID 50820: 13 measurements
31
+ - Item ID 52033: 13 measurements
32
+ - Item ID 50809: 12 measurements
33
+ - Item ID 50822: 10 measurements
34
+ - Item ID 51221: 10 measurements
35
+
36
+ CLINICAL NOTES:
37
+ [DISCHARGE]
38
+ Name: ___ Unit No: ___
39
+
40
+ Admission Date: ___ Discharge Date: ___
41
+
42
+ Date of Birth: ___ Sex: F
43
+
44
+ Service: CARDIOTHORACIC
45
+
46
+ Allergies:
47
+ ___ recorded as having No Known Allergies to Drugs
48
+
49
+ Attending: ___.
50
+
51
+ Chief Complaint:
52
+ increasing chest tightness and SOB
53
+
54
+ Major Surgical or Invasive Procedure:
55
+ Aortic Valve Replacement ___
56
+
57
+
58
+ History of Present Illness:
59
+ Mrs. ___ is a ___ lady with
60
+ worsening symptoms of chest tightness, shortness of breath
61
+ related to documented critical aortic stenosis by
62
+ catheterization and echocardiography, presenting for aortic
63
+ valve replacement. Her coronary arteries were normal by
64
+ cardiac catheterization.
65
+
66
+
67
+ Past Medical History:
68
+ EF: 60% Cr: 0.8 Wt: 77.5K
69
+ PMH: RHD, AS, HTN, DJD(spine-lumbar/cervical), TIA, skin CA
70
+ PSH: Tonsillectomy, C-section x5, Bilat varicose vein stripping,
71
+ D&C, excision skin CA lesion
72
+
73
+
74
+ Social History:
75
+ ___
76
+ Family History:
77
+ Mother died age ___ RHF, Father died age ___ ruptured aneursym
78
+
79
+ Physical Exam:
80
+ general: well appearing robust female
81
+ VS; 98.6, 133/80, 74Sr, 20, 97RA
82
+ HEENT: unremarkable
83
+ Chest: sternal incision clean dry and intact. sternum stable.
84
+ COR: RRR S1, S2
85
+ ABD: soft, NT, ND, +BS
86
+ extrem: 2+ pedal edema bilat
87
+ Neuro: intact.
88
+
89
+
90
+ Pertinent Results:
91
+ ___ 11:57AM BLOOD WBC-8.0 RBC-2.36*# Hgb-7.9*# Hct-22.0*#
92
+ MCV-93 MCH-33.2* MCHC-35.7* RDW-12.9 Plt ___
93
+ ___ 01:00PM BLOOD WBC-14.2* RBC-3.02* Hgb-10.0* Hct-28.3*
94
+ MCV-94 MCH-33.0* MCHC-35.2* RDW-13.9 Plt ___
95
+ ___ 11:57AM BLOOD ___ PTT-36.4* ___
96
+ ___ 01:07PM BLOOD ___ PTT-38.7* ___
97
+ ___ 02:12AM BLOOD Glucose-137* UreaN-12 Creat-0.6 Na-132*
98
+ K-5.3* Cl-105 HCO3-23 AnGap-9
99
+ ___ 11:42AM BLOOD Glucose-107* UreaN-18 Creat-0.7 Na-129*
100
+ K-4.4 Cl-98 HCO3-25 AnGap-10
101
+
102
+
103
+ ___ ECHOCARDIOGRAPHY REPORT
104
+
105
+ ___ ___ MRN: ___ TEE (Complete)
106
+ Done ___ at 2:17:47 ___ FINAL
107
+ Referring Physician ___
108
+ ___.
109
+ ___, Division of Cardiothorac
110
+ ___ Status: Inpatient DOB: ___
111
+ Age (years): ___ F Hgt (in):
112
+ BP (mm Hg): / Wgt (lb):
113
+ HR (bpm): BSA (m2):
114
+ Indication: AVR
115
+ ICD-9 Codes: 786.05, 440.0, 424.1, 424.0
116
+ ___ Information
117
+ Date/Time: ___ at 14:17 ___ MD: ___, MD
118
+ ___ Type: TEE (Complete) Sonographer: ___, MD
119
+ Doppler: Full Doppler and color Doppler ___ Location:
120
+ Anesthesia West OR cardiac
121
+ Contrast: None Tech Quality: Adequate
122
+ Tape #: ___-1: Machine: ___
123
+ ___ Measurements
124
+ Results Measurements Normal Range
125
+ Left Ventricle - Inferolateral Thickness: *1.2 cm 0.6 - 1.1 cm
126
+
127
+ Left Ventricle - Ejection Fraction: 40% to 45% >= 55%
128
+ Left Ventricle - Peak Resting LVOT gradient: 1 mm Hg <= 10 mm
129
+ Hg
130
+ Aorta - Ascending: 3.1 cm <= 3.4 cm
131
+ Aorta - Descending Thoracic: 2.1 cm <= 2.5 cm
132
+ Aortic Valve - Peak Velocity: *3.2 m/sec <= 2.0 m/sec
133
+ Aortic Valve - Peak Gradient: *40 mm Hg < 20 mm Hg
134
+ Aortic Valve - Mean Gradient: 27 mm Hg
135
+ Aortic Valve - Valve Area: *0.4 cm2 >= 3.0 cm2
136
+ Mitral Valve - Peak Velocity: 0.7 m/sec
137
+ Mitral Valve - Pressure Half Time: ___ ms
138
+ Mitral Valve - MVA (P ___ T): 3.4 cm2
139
+
140
+ Findings
141
+ RIGHT ATRIUM/INTERATRIAL SEPTUM: No spontaneous echo contrast in
142
+ the body of the RA. No mass or thrombus in the RA or RAA. No ASD
143
+ by 2D or color Doppler.
144
+
145
+ LEFT VENTRICLE: Mild symmetric LVH with normal cavity size. Mild
146
+ symmetric LVH. Mildly depressed LVEF. No VSD.
147
+
148
+ LV WALL MOTION: Regional left ventricular wall motion findings
149
+ as shown below; remaining LV segments contract normally.
150
+
151
+ RIGHT VENTRICLE: Normal RV chamber size and free wall motion.
152
+
153
+ AORTA: Normal diameter of aorta at the sinus, ascending and arch
154
+ levels. Normal ascending aorta diameter. Simple atheroma in
155
+ ascending aorta. Normal descending aorta diameter. Simple
156
+ atheroma in descending aorta.
157
+
158
+ AORTIC VALVE: Severely thickened/deformed aortic valve leaflets.
159
+ Severe AS (AoVA <0.8cm2). Mild (1+) AR.
160
+
161
+ MITRAL VALVE: Mildly thickened mitral valve leaflets. Mild (1+)
162
+ MR.
163
+
164
+ ___ VALVE: Normal tricuspid valve leaflets. Mild [1+] TR.
165
+
166
+ PULMONIC VALVE/PULMONARY ARTERY: Pulmonic valve not visualized.
167
+ No PS. Physiologic PR.
168
+
169
+ PERICARDIUM: No pericardial effusion.
170
+
171
+ GENERAL COMMENTS: A TEE was performed in the location listed
172
+ above. I certify I was present in compliance with ___
173
+ regulations. The ___ was under general anesthesia throughout
174
+ the procedure. The ___ received antibiotic prophylaxis. The
175
+ TEE probe was passed with assistance from the anesthesioology
176
+ staff using a laryngoscope. No TEE related complications.
177
+
178
+ REGIONAL LEFT VENTRICULAR WALL MOTION:
179
+
180
+
181
+
182
+
183
+
184
+ N = Normal, H = Hypokinetic, A = Akinetic, D = Dyskinetic
185
+ Conclusions
186
+ Pre-CPB:
187
+ No spontaneous echo contrast is seen in the body of the right
188
+ atrium. No mass or thrombus is seen in the right or left atrium
189
+ or left atrial appendage. No atrial septal defect is seen by 2D
190
+ or color Doppler. There is mild symmetric left ventricular
191
+ hypertrophy with normal cavity size. Overall left ventricular
192
+ systolic function is mildly depressed (LVEF= 40 - 45%). There is
193
+ no ventricular septal defect. The remaining left ventricular
194
+ segments contract normally. Right ventricular chamber size and
195
+ free wall motion are normal. The diameters of aorta of the
196
+ descending, ascending and arch levels are normal. There are
197
+ simple atheroma in the descending thoracic aorta. The aortic
198
+ valve leaflets are severely thickened/deformed. There is severe
199
+ aortic valve stenosis (area <0.8cm2). Mild (1+) aortic
200
+ regurgitation is seen. The mitral valve leaflets are mildly
201
+ thickened. Mild (1+) mitral regurgitation is seen. There is no
202
+ pericardial effusion.
203
+
204
+ Post-CPB:
205
+ Aortic prosthesis in place, no AI, no perivalvular leak seen. AV
206
+ mean gradient 11 mm Hg. Ascending and descending thoracic aorta
207
+ free of dissection. No new mitral regugitation.
208
+ I certify that I was present for this procedure in compliance
209
+ with ___ regulations.
210
+
211
+ Electronically signed by ___, MD, Interpreting
212
+ physician ___ ___ 15:16
213
+
214
+
215
+
216
+ Brief Hospital Course:
217
+ Pt was admitted and taken to the OR for Aortic valve replacement
218
+ with a 23-mm
219
+ Mosaic porcine tissue valve for critical aortic stenosis. See
220
+ operative notes for details. Pt was admitted to the CVICU for
221
+ post operative invasive hemodynamic monitoring. Pt was extubated
222
+ on POD 0. Transferred from the ICU to the telemetry unit for
223
+ ongoing post operative care on POD#2. she was rec'ing lopressor
224
+ and diuresis. On the eve POD#2 Mrs. ___ developed afib and was
225
+ started on amiodarone gtt. She converted to SR and after
226
+ completion of IV amiodarone was started on a po regimen. Atrial
227
+ fibrillation recurred and the ___ was started on coumadin.
228
+ Of note, pt was borderline hyponatremic on admit which persisted
229
+ throughout her hospital stay - the lowest NA was 128 and the
230
+ highest was 132. She was placed on a free water restriction. She
231
+ progressed well and was ready for d/c home on POD#5.
232
+
233
+
234
+ Medications on Admission:
235
+ Benicar 30', Folate 1', Tramadol 50', Pidoxicam 20', Soma350',
236
+ MVI, VitE 200', Fish Oil 1200', Caltrate D 600', Lasix 20
237
+ q3days, ASA 325', Amoxicillin 2gm-prn
238
+
239
+ Discharge Medications:
240
+ 1. Docusate Sodium 100 mg Capsule Sig: One (1) Capsule PO BID (2
241
+ times a day) for 1 months.
242
+ Disp:*60 Capsule(s)* Refills:*0*
243
+ 2. Ranitidine HCl 150 mg Tablet Sig: One (1) Tablet PO BID (2
244
+ times a day) for 1 months.
245
+ Disp:*60 Tablet(s)* Refills:*0*
246
+ 3. Aspirin 81 mg Tablet, Delayed Release (E.C.) Sig: One (1)
247
+ Tablet, Delayed Release (E.C.) PO DAILY (Daily).
248
+ Disp:*30 Tablet, Delayed Release (E.C.)(s)* Refills:*0*
249
+ 4. Oxycodone-Acetaminophen ___ mg Tablet Sig: ___ Tablets PO
250
+ Q4H (every 4 hours) as needed for pain.
251
+ Disp:*60 Tablet(s)* Refills:*0*
252
+ 5. Acetaminophen 325 mg Tablet Sig: Two (2) Tablet PO Q4H (every
253
+ 4 hours) as needed.
254
+ 6. Folic Acid 1 mg Tablet Sig: One (1) Tablet PO DAILY (Daily).
255
+ Disp:*30 Tablet(s)* Refills:*0*
256
+ 7. Multivitamin Tablet Sig: One (1) Tablet PO DAILY (Daily).
257
+ Disp:*30 Tablet(s)* Refills:*0*
258
+ 8. Amiodarone 200 mg Tablet Sig: Two (2) Tablet PO BID (2 times
259
+ a day): 400mg 2x/day x 7 days, then 200mg 2x/day x 7 days, then
260
+ 200mg/day until further instructed.
261
+ Disp:*120 Tablet(s)* Refills:*2*
262
+ 9. Metoprolol Tartrate 25 mg Tablet Sig: One (1) Tablet PO BID
263
+ (2 times a day).
264
+ Disp:*60 Tablet(s)* Refills:*0*
265
+ 10. Tramadol 50 mg Tablet Sig: One (1) Tablet PO Q4H (every 4
266
+ hours) as needed.
267
+ Disp:*40 Tablet(s)* Refills:*0*
268
+ 11. Carisoprodol 350 mg Tablet Sig: One (1) Tablet PO BID (2
269
+ times a day).
270
+ Disp:*60 Tablet(s)* Refills:*0*
271
+ 12. Piroxicam 20 mg Capsule Sig: One (1) Capsule PO once a day.
272
+ Disp:*30 Capsule(s)* Refills:*0*
273
+ 13. Furosemide 20 mg Tablet Sig: Two (2) Tablet PO once a day
274
+ for 2 weeks.
275
+ Disp:*28 Tablet(s)* Refills:*0*
276
+ 14. Potassium Chloride 20 mEq Tab Sust.Rel. Particle/Crystal
277
+ Sig: One (1) Tab Sust.Rel. Particle/Crystal PO twice a day for 2
278
+ weeks.
279
+ Disp:*28 Tab Sust.Rel. Particle/Crystal(s)* Refills:*0*
280
+ 15. Warfarin 5 mg Tablet Sig: One (1) Tablet PO once a day: Dr.
281
+ ___ to dose for goal INR ___. Dose will change.
282
+ Disp:*30 Tablet(s)* Refills:*2*
283
+
284
+
285
+ Discharge Disposition:
286
+ Home With Service
287
+
288
+ Facility:
289
+ ___.
290
+
291
+ Discharge Diagnosis:
292
+ s/p aortic valve replacement
293
+
294
+
295
+ Discharge Condition:
296
+ good
297
+
298
+
299
+ Discharge Instructions:
300
+ shower daily, no baths or swimming
301
+ no driving for 4 weeks and off all narcotics
302
+ no lifting more than 10 pounds for 10 weeks
303
+ no lotions, creams or powders to incisions
304
+ report any fever greater than 100.5
305
+ report any redness of, or drainage from incisions
306
+ report any weight gain greater than 2 pounds a day or 5 pounds a
307
+ week
308
+ take all medications as directed
309
+
310
+ Followup Instructions:
311
+ ___
312
+
313
+
314
+ [RADIOLOGY] HISTORY: In comparison with the previous study, there has been an aortic
315
+ valve repair. Endotracheal tube lies approximately 1.5 cm above the carina.
316
+ Right IJ Swan-Ganz catheter extends to the right pulmonary artery at the
317
+ border with the mediastinum. Right chest tube is in place with no evidence of
318
+ pneumothorax. Nasogastric tube extends well into the stomach.
319
+
320
+
321
+ [RADIOLOGY] CHEST RADIOGRAPH
322
+
323
+ INDICATION: Pleural effusion.
324
+
325
+ ___.
326
+
327
+ FINDINGS: As compared to the previous examination, the Swan-Ganz catheter has
328
+ been removed, the patient has been extubated, and the nasogastric tube has
329
+ been removed. On today's examination, there is no evidence of pneumothorax.
330
+ The right-sided chest tube is in unchanged position. Minimal increase in size
331
+ of the cardiac silhouette. Minimal left basal hypoventilation. No focal
332
+ parenchymal opacity suggestive of pneumonia.
333
+
334
+
335
+ [RADIOLOGY] INDICATION: Patient is a ___ female with aortic valve replacement,
336
+ now needs PICC line for IV access. Please assess PICC positioning.
337
+
338
+ EXAMINATION: Single upright portable chest radiograph.
339
+
340
+ COMPARISONS: Comparison to chest radiograph from 7 a.m. on ___.
341
+
342
+ FINDINGS: There is interval placement of a left-sided PICC line whose tip
343
+ terminates within the right atrium. This line can be pulled back about 2.5
344
+ cm. There is a right internal jugular introducer catheter in stable position.
345
+ There is a right-sided chest tube with tip overlying the right base in
346
+ unchanged position. The patient is status post median sternotomy with
347
+ evidence of valve replacement. There is increase in left retrocardiac opacity
348
+ consistent with worsening atelectasis. The lungs are otherwise clear with no
349
+ signs of pneumonia or congestive heart failure. No pleural effusions or
350
+ pneumothorax is seen. The cardiac and mediastinal contours are stable. The
351
+ visualized osseous structures are unremarkable.
352
+
353
+ IMPRESSION: PICC line terminating within the right atrium. This can be
354
+ pulled back approximately 2.5 cm. Slightly worsening left lower lobe
355
+ atelectasis.
356
+
357
+ These findings were discussed with ___ at 11:30 a.m. on ___.
358
+
359
+
360
+ [RADIOLOGY] PORTABLE UPRIGHT CHEST RADIOGRAPH
361
+
362
+ CLINICAL HISTORY: New right-sided chest pain with chest tube to waterseal.
363
+ Evaluate for pneumothorax or other process.
364
+
365
+ This examination is technically limited due to underpenetration from body
366
+ habitus or portable technique. No gross pneumothorax is seen, although
367
+ sensitivity is likely to be decreased secondary to limitations above. Right
368
+ basilar chest tube remains present. Left-sided PICC is present, although the
369
+ tip is not well visualized. Cardiac and mediastinal silhouettes remain
370
+ unchanged, with persistent retrocardiac opacity.
371
+
372
+ IMPRESSION:
373
+ 1. Technically limited examination, limiting assessment for pneumothorax.
374
+ No obvious pneumothorax.
375
+ 2. Persistent retrocardiac opacity at the left base, representing atelectasis
376
+ versus consolidation.
377
+
378
+
379
+ [RADIOLOGY] HISTORY: ___ woman with removal of chest tube.
380
+
381
+ TECHNIQUE: Frontal and lateral radiographs of the chest at 4:13 p.m. compared
382
+ to prior at 9:41 a.m.
383
+
384
+ FINDINGS: In comparison to the prior examination, the right-sided chest tube
385
+ has been removed. A right apical pneumothorax is small. A left-sided central
386
+ venous catheter is in place, with the tip near the expected location of the
387
+ cavoatrial junction. Median sternotomy wires are in place. Consolidative
388
+ opacity at the left lung base obscures the medial aspect of the left
389
+ hemidiaphragm in retrocardiac location. Pleural effusions are moderate on the
390
+ left and small on the right. A prosthetic aortic valve is in place.
391
+
392
+ IMPRESSION:
393
+ 1. Small right apical pneumothorax status post removal of the right-sided
394
+ chest tube.
395
+ 2. Moderate left and small right pleural effusions.
396
+ 3. Left basilar opacity, which may represent atelectasis, consolidation, or
397
+ combination thereof.
398
+
399
+
400
+ [RADIOLOGY] HISTORY: ___ woman with removal of chest tube.
401
+
402
+ TECHNIQUE: Single portable radiograph of the chest at 6:55 p.m. compared to
403
+ prior at 4:13 p.m.
404
+
405
+ FINDINGS:
406
+
407
+ In comparison to prior examination, there has been no significant interval
408
+ change. A small right apical pneumothorax is persistent. The consolidative
409
+ opacity in a retrocardiac location at the left lung base obscures the medial
410
+ aspect of the left hemidiaphragm. A left pleural effusion is present. A
411
+ left-sided PICC catheter terminates near the expected location of the
412
+ cavoatrial junction. Median sternotomy wires are in place.
413
+
414
+ IMPRESSION:
415
+ 1. Persistent small right apical pneumothorax.
416
+ 2. Persistent left basilar opacity, which could represent consolidation,
417
+ atelectasis or combination thereof.
418
+ 3. Small to moderate left pleural effusion.
419
+
420
+
421
+
422
+
423
+ [RADIOLOGY] HISTORY: Status post AVR. Follow up pneumothorax, effusion.
424
+
425
+ CHEST, SINGLE AP VIEW.
426
+
427
+ Compared with ___, no significant change is detected. Again seen is a very
428
+ small right apical pneumothorax. The cardiomediastinal silhouette,
429
+ retrocardiac density, and small bilateral pleural effusions are stable. No
430
+ CHF. Left subclavian PICC line unchanged, tip overlying mid/distal SVC.
431
+ Circular densities overlying the cardiac silhouette presumably represent the
432
+ patient's AVR.
433
+
434
+ PROCEDURES (readable):
435
+ - 3521 (ICD-9) — Open and other replacement of aortic valve with tissue graft
436
+ - 3961 (ICD-9) — Extracorporeal circulation auxiliary to open heart surgery
437
+ - 3893 (ICD-9) — Venous catheterization, not elsewhere classified
438
+
439
+ DIAGNOSES (readable):
440
+ - 4241 (ICD-9) — Aortic valve disorders
441
+ - 9971 (ICD-9) — Cardiac complications, not elsewhere classified
442
+ - 42731 (ICD-9) — Atrial fibrillation
443
+
444
+ LAB ITEMS (readable, deduped):
445
+ - Alanine Aminotransferase (ALT) (Item 50861)
446
+ - Albumin (Item 50862)
447
+ - Alkaline Phosphatase (Item 50863)
448
+ - Amylase (Item 50867)
449
+ - Anion Gap (Item 50868)
450
+ - Asparate Aminotransferase (AST) (Item 50878)
451
+ - Base Excess (Item 50802)
452
+ - Basophils (Item 51146)
453
+ - Bicarbonate (Item 50882)
454
+ - Bilirubin, Total (Item 50885)
455
+ - Calcium, Total (Item 50893)
456
+ - Calculated Total CO2 (Item 50804)
457
+ - Chloride (Item 50902)
458
+ - Chloride, Whole Blood (Item 50806)
459
+ - Creatinine (Item 50912)
460
+ - Eosinophils (Item 51200)
461
+ - Estimated GFR (MDRD equation) (Item 50920)
462
+ - Fibrinogen, Functional (Item 51214)
463
+ - Free Calcium (Item 50808)
464
+ - Glucose (Item 50809)
465
+ - Glucose (Item 50931)
466
+ - Hematocrit (Item 51221)
467
+ - Hematocrit, Calculated (Item 50810)
468
+ - Hemoglobin (Item 50811)
469
+ - Hemoglobin (Item 51222)
470
+ - INR(PT) (Item 51237)
471
+ - Lactate (Item 50813)
472
+ - Lipase (Item 50956)
473
+ - Lymphocytes (Item 51244)
474
+ - MCH (Item 51248)
475
+ - MCHC (Item 51249)
476
+ - MCV (Item 51250)
477
+ - Magnesium (Item 50960)
478
+ - Monocytes (Item 51254)
479
+ - Neutrophils (Item 51256)
480
+ - Oxygen Saturation (Item 50817)
481
+ - PT (Item 51274)
482
+ - PTT (Item 51275)
483
+ - Phosphate (Item 50970)
484
+ - Platelet Count (Item 51265)
485
+ - Potassium (Item 50971)
486
+ - Potassium, Whole Blood (Item 50822)
487
+ - RDW (Item 51277)
488
+ - Red Blood Cells (Item 51279)
489
+ - Sodium (Item 50983)
490
+ - Sodium, Whole Blood (Item 50824)
491
+ - Specimen Type (Item 52033)
492
+ - Urea Nitrogen (Item 51006)
493
+ - White Blood Cells (Item 51301)
494
+ - pCO2 (Item 50818)
495
+ - pH (Item 50820)
496
+ - pO2 (Item 50821)
summaries/subject_12991336_hadm_25464784_summary.txt ADDED
@@ -0,0 +1,92 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ **PRE-OPERATIVE SUMMARY INPUT (SINGLE ADMISSION)**
2
+
3
+ **Patient Information:**
4
+
5
+ * Age: 70
6
+ * Gender: Female
7
+ * Admission ID: 25464784
8
+ * Admission Type: Surgical Same Day Admission
9
+ * Admission Location: Physician Referral
10
+ * Discharge Location: Home Health Care
11
+ * Insurance: Medicare
12
+ * Race: White
13
+ * Marital Status: Married
14
+ * Language: English
15
+
16
+ **Procedures:**
17
+
18
+ 1. ICD-9: 3521 - Open and other replacement of aortic valve with tissue graft
19
+ 2. ICD-9: 3961 - Extracorporeal circulation auxiliary to open heart surgery
20
+ 3. ICD-9: 3893 - Venous catheterization, not elsewhere classified
21
+
22
+ **Diagnoses:**
23
+
24
+ 1. ICD-9: 4241 - Aortic valve disorders
25
+ 2. ICD-9: 9971 - Cardiac complications, not elsewhere classified
26
+ 3. ICD-9: 42731 - Atrial fibrillation
27
+
28
+ **Laboratory Results:**
29
+
30
+ * Total laboratory events: 272
31
+ * Most frequent lab tests:
32
+ + Item ID 50820: 13 measurements
33
+ + Item ID 52033: 13 measurements
34
+ + Item ID 50809: 12 measurements
35
+ + Item ID 50822: 10 measurements
36
+ + Item ID 51221: 10 measurements
37
+
38
+ **Clinical Notes:**
39
+
40
+ * Chief Complaint: Increasing chest tightness and shortness of breath
41
+ * History of Present Illness: Worsening symptoms of chest tightness, shortness of breath related to documented critical aortic stenosis by catheterization and echocardiography
42
+ * Past Medical History:
43
+ + Rheumatic heart disease (RHD)
44
+ + Aortic stenosis (AS)
45
+ + Hypertension (HTN)
46
+ + Degenerative joint disease (DJD)
47
+ + Transient ischemic attack (TIA)
48
+ + Skin cancer
49
+ + Tonsillectomy
50
+ + Cesarean section (x5)
51
+ + Bilateral varicose vein stripping
52
+ + D&C
53
+ + Excision skin cancer lesion
54
+ * Social History:
55
+ + Not provided
56
+ * Family History:
57
+ + Mother died at age 80 from rheumatic heart failure (RHF)
58
+ + Father died at age 75 from ruptured aneurysm
59
+
60
+ **Physical Exam:**
61
+
62
+ * General: Well appearing robust female
63
+ * Vital Signs: 98.6°F, 133/80 mmHg, 74°F, 20, 97% RA
64
+ * Head and Neck: Unremarkable
65
+ * Chest: Sternal incision clean dry and intact, sternum stable
66
+ * Cardiac: Regular rate and rhythm, S1, S2
67
+ * Abdomen: Soft, no tenderness or masses
68
+ * Extremities: 2+ pedal edema bilaterally
69
+ * Neuro: Intact
70
+
71
+ **Pertinent Results:**
72
+
73
+ * Blood:
74
+ + WBC: 8.0
75
+ + RBC: 2.36
76
+ + Hgb: 7.9
77
+ + Hct: 22.0
78
+ + MCV: 93
79
+ + MCH: 33.2
80
+ + MCHC: 35.7
81
+ + RDW: 12.9
82
+ + Platelet count: Not provided
83
+ * Blood:
84
+ + WBC: 14.2
85
+ + RBC: 3.02
86
+ + Hgb: 10.0
87
+ + Hct: 28.3
88
+ + MCV: 94
89
+ + MCH: 33.0
90
+ + MCHC: 35.2
91
+ + RDW: 13.9
92
+ +
summaries/subject_12991336_hadm_26941734_input.txt ADDED
@@ -0,0 +1,276 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ PRE-OPERATIVE SUMMARY INPUT (SINGLE ADMISSION):
2
+
3
+ PATIENT:
4
+ - Age: 70
5
+ - Gender: F
6
+
7
+ ADMISSION:
8
+ - Admission ID: 26941734
9
+ - Admission Type: SURGICAL SAME DAY ADMISSION
10
+ - Admission Location: PHYSICIAN REFERRAL
11
+ - Discharge Location: SKILLED NURSING FACILITY
12
+ - Insurance: Medicare
13
+ - Race: WHITE
14
+ - Marital Status: MARRIED
15
+ - Language: ENGLISH
16
+
17
+ PROCEDURES (5 total):
18
+ - 8108 (ICD-9)
19
+ - 0309 (ICD-9)
20
+ - 0309 (ICD-9)
21
+ - 8162 (ICD-9)
22
+ - 9904 (ICD-9)
23
+
24
+ DIAGNOSES (10 total):
25
+ - 7384 (ICD-9)
26
+ - 4351 (ICD-9)
27
+ - 4019 (ICD-9)
28
+ - V433 (ICD-9)
29
+ - 71590 (ICD-9)
30
+ - 27800 (ICD-9)
31
+ - 53081 (ICD-9)
32
+ - V1254 (ICD-9)
33
+ - V1083 (ICD-9)
34
+ - V4589 (ICD-9)
35
+
36
+ LABORATORY RESULTS:
37
+ - Item ID 50802: 2 measurements, 2119-07-19 14:42:00 to 2119-07-19 16:06:00
38
+ - Item ID 50804: 2 measurements, 2119-07-19 14:42:00 to 2119-07-19 16:06:00
39
+ - Item ID 50806: 2 measurements, 2119-07-19 14:42:00 to 2119-07-19 16:06:00
40
+ - Item ID 50808: 2 measurements, 2119-07-19 14:42:00 to 2119-07-19 16:06:00
41
+ - Item ID 50809: 2 measurements, 2119-07-19 14:42:00 to 2119-07-19 16:06:00
42
+ - Item ID 50810: 2 measurements, 2119-07-19 14:42:00 to 2119-07-19 16:06:00
43
+ - Item ID 50811: 2 measurements, 2119-07-19 14:42:00 to 2119-07-19 16:06:00
44
+ - Item ID 50813: 2 measurements, 2119-07-19 14:42:00 to 2119-07-19 16:06:00
45
+ - Item ID 50818: 2 measurements, 2119-07-19 14:42:00 to 2119-07-19 16:06:00
46
+ - Item ID 50820: 2 measurements, 2119-07-19 14:42:00 to 2119-07-19 16:06:00
47
+ - Item ID 50821: 2 measurements, 2119-07-19 14:42:00 to 2119-07-19 16:06:00
48
+ - Item ID 50822: 2 measurements, 2119-07-19 14:42:00 to 2119-07-19 16:06:00
49
+ - Item ID 50824: 2 measurements, 2119-07-19 14:42:00 to 2119-07-19 16:06:00
50
+ - Item ID 50868: 4 measurements, 2119-07-19 18:03:00 to 2119-07-22 04:15:00
51
+ - Item ID 50882: 4 measurements, 2119-07-19 18:03:00 to 2119-07-22 04:15:00
52
+ - Item ID 50902: 4 measurements, 2119-07-19 18:03:00 to 2119-07-22 04:15:00
53
+ - Item ID 50912: 4 measurements, 2119-07-19 18:03:00 to 2119-07-22 04:15:00
54
+ - Item ID 50920: 1 measurements, 2119-07-19 18:03:00 to 2119-07-19 18:03:00
55
+ - Item ID 50931: 4 measurements, 2119-07-19 18:03:00 to 2119-07-22 04:15:00
56
+ - Item ID 50971: 4 measurements, 2119-07-19 18:03:00 to 2119-07-22 04:15:00
57
+ - Item ID 50983: 4 measurements, 2119-07-19 18:03:00 to 2119-07-22 04:15:00
58
+ - Item ID 51006: 4 measurements, 2119-07-19 18:03:00 to 2119-07-22 04:15:00
59
+ - Item ID 51221: 4 measurements, 2119-07-19 18:03:00 to 2119-07-22 04:15:00
60
+ - Item ID 51222: 4 measurements, 2119-07-19 18:03:00 to 2119-07-22 04:15:00
61
+ - Item ID 51237: 1 measurements, 2119-07-19 18:03:00 to 2119-07-19 18:03:00
62
+ - Item ID 51248: 4 measurements, 2119-07-19 18:03:00 to 2119-07-22 04:15:00
63
+ - Item ID 51249: 4 measurements, 2119-07-19 18:03:00 to 2119-07-22 04:15:00
64
+ - Item ID 51250: 4 measurements, 2119-07-19 18:03:00 to 2119-07-22 04:15:00
65
+ - Item ID 51265: 4 measurements, 2119-07-19 18:03:00 to 2119-07-22 04:15:00
66
+ - Item ID 51274: 1 measurements, 2119-07-19 18:03:00 to 2119-07-19 18:03:00
67
+ - Item ID 51275: 1 measurements, 2119-07-19 18:03:00 to 2119-07-19 18:03:00
68
+ - Item ID 51277: 4 measurements, 2119-07-19 18:03:00 to 2119-07-22 04:15:00
69
+ - Item ID 51279: 4 measurements, 2119-07-19 18:03:00 to 2119-07-22 04:15:00
70
+ - Item ID 51301: 4 measurements, 2119-07-19 18:03:00 to 2119-07-22 04:15:00
71
+ - Item ID 51464: 1 measurements, 2119-07-23 04:00:00 to 2119-07-23 04:00:00
72
+ - Item ID 51466: 1 measurements, 2119-07-23 04:00:00 to 2119-07-23 04:00:00
73
+ - Item ID 51478: 1 measurements, 2119-07-23 04:00:00 to 2119-07-23 04:00:00
74
+ - Item ID 51484: 1 measurements, 2119-07-23 04:00:00 to 2119-07-23 04:00:00
75
+ - Item ID 51486: 1 measurements, 2119-07-23 04:00:00 to 2119-07-23 04:00:00
76
+ - Item ID 51487: 1 measurements, 2119-07-23 04:00:00 to 2119-07-23 04:00:00
77
+ - Item ID 51491: 1 measurements, 2119-07-23 04:00:00 to 2119-07-23 04:00:00
78
+ - Item ID 51492: 1 measurements, 2119-07-23 04:00:00 to 2119-07-23 04:00:00
79
+ - Item ID 51498: 1 measurements, 2119-07-23 04:00:00 to 2119-07-23 04:00:00
80
+ - Item ID 51506: 1 measurements, 2119-07-23 04:00:00 to 2119-07-23 04:00:00
81
+ - Item ID 51508: 1 measurements, 2119-07-23 04:00:00 to 2119-07-23 04:00:00
82
+ - Item ID 51514: 1 measurements, 2119-07-23 04:00:00 to 2119-07-23 04:00:00
83
+ - Item ID 52033: 2 measurements, 2119-07-19 14:42:00 to 2119-07-19 16:06:00
84
+
85
+ CLINICAL NOTES:
86
+ [DISCHARGE NOTE]
87
+ Name: ___ Unit No: ___
88
+
89
+ Admission Date: ___ Discharge Date: ___
90
+
91
+ Date of Birth: ___ Sex: F
92
+
93
+ Service: ORTHOPAEDICS
94
+
95
+ Allergies:
96
+ Patient recorded as having No Known Allergies to Drugs
97
+
98
+ Attending: ___.
99
+
100
+ Chief Complaint:
101
+ ___ with neurogenic claudication and low back pain from spinal
102
+ stenosis.
103
+
104
+ Major Surgical or Invasive Procedure:
105
+ ___: L3-L5 laminectomies and L4-L5 instrumented posterior
106
+ spine fusion.
107
+
108
+
109
+ History of Present Illness:
110
+ ___ with neurogenic claudication and low back pain from spinal
111
+ stenosis.
112
+
113
+ Past Medical History:
114
+ PMH: HTN, OA, possible TIA. PSH: bioprosthetic aortic valve
115
+ replacement ___ for aortic stenosis (rheumatic fever when ___
116
+ - had postop afib, tonsillectomy, c-section, skin cancer
117
+ excision, varicose vein stripping.
118
+
119
+ Physical Exam:
120
+ obese female with low back pain and bilateral leg symptoms from
121
+ neurogenic claudication.
122
+
123
+ Pertinent Results:
124
+ ___ 06:03PM GLUCOSE-123* UREA N-19 CREAT-0.8 SODIUM-137
125
+ POTASSIUM-4.2 CHLORIDE-104 TOTAL CO2-26 ANION GAP-11
126
+ ___ 06:03PM estGFR-Using this
127
+ ___ 06:03PM WBC-8.6# RBC-3.15* HGB-10.0* HCT-30.2* MCV-96
128
+ MCH-31.8 MCHC-33.2 RDW-13.3
129
+ ___ 06:03PM PLT COUNT-246
130
+ ___ 06:03PM ___ PTT-23.6 ___
131
+ ___ 04:06PM TYPE-ART PO2-241* PCO2-38 PH-7.43 TOTAL
132
+ CO2-26 BASE XS-1
133
+
134
+ Brief Hospital Course:
135
+ Patient was admitted to the ___ Spine Surgery Service and
136
+ taken to the Operating Room for the above procedure. Refer to
137
+ the dictated operative note for further details. The surgery
138
+ was without complication and the patient was transferred to the
139
+ PACU in a stable condition. TEDs/pnemoboots were used for
140
+ postoperative DVT prophylaxis. Intravenous antibiotics were
141
+ continued for 24hrs postop per standard protocol. Initial postop
142
+ pain was controlled with a PCA. Diet was advanced as tolerated.
143
+ The patient was transitioned to oral pain medication when
144
+ tolerating PO diet. Foley and hemovac were removed. Physical
145
+ therapy was consulted for mobilization OOB to ambulate. they
146
+ recommend rehab placement to continue to work on mobilization
147
+ and help to transition to home. received 2 transfusions and HCT
148
+ stabilized. Hospital course was otherwise unremarkable. On the
149
+ day of discharge the patient was afebrile with stable vital
150
+ signs, comfortable on oral pain control and tolerating a regular
151
+ diet. postop xrays show good alignment and hardware in place at
152
+ L4-L5.
153
+
154
+ Medications on Admission:
155
+ NKDA. Meds: folic acid, lasix, metoprolol, tramadol.
156
+
157
+ Discharge Medications:
158
+ 1. Docusate Sodium 100 mg Capsule Sig: One (1) Capsule PO BID (2
159
+ times a day).
160
+ Disp:*60 Capsule(s)* Refills:*2*
161
+ 2. Folic Acid 1 mg Tablet Sig: One (1) Tablet PO DAILY (Daily).
162
+
163
+ 3. Metoprolol Tartrate 25 mg Tablet Sig: One (1) Tablet PO BID
164
+ (2 times a day).
165
+ 4. Furosemide 40 mg Tablet Sig: One (1) Tablet PO QOD ().
166
+ 5. Senna 8.6 mg Tablet Sig: One (1) Tablet PO BID (2 times a
167
+ day) as needed for constipation.
168
+ 6. Hydromorphone 2 mg Tablet Sig: ___ Tablets PO Q3H (every 3
169
+ hours) as needed for pain.
170
+ Disp:*90 Tablet(s)* Refills:*0*
171
+ 7. Diazepam 5 mg Tablet Sig: One (1) Tablet PO Q6H (every 6
172
+ hours) as needed for spasm/anxiety.
173
+ 8. Zolpidem 5 mg Tablet Sig: Two (2) Tablet PO HS (at bedtime)
174
+ as needed for insomnia.
175
+
176
+
177
+ Discharge Disposition:
178
+ Extended Care
179
+
180
+ Facility:
181
+ ___
182
+
183
+ Discharge Diagnosis:
184
+ ___ with neurogenic claudication and low back pain from spinal
185
+ stenosis.
186
+
187
+
188
+ Discharge Condition:
189
+ stable
190
+
191
+
192
+ Discharge Instructions:
193
+ You have undergone the following operation: Lumbar Decompression
194
+ With Fusion
195
+
196
+ Immediately after the operation:
197
+
198
+ -Activity: You should not lift anything greater than 10 lbs for
199
+ 2 weeks. You will be more comfortable if you do not sit or stand
200
+ more than ~45 minutes without getting up and walking around.
201
+
202
+ -Rehabilitation/ Physical Therapy:
203
+ o2-3 times a day you should go for a walk for ___ minutes as
204
+ part of your recovery. You can walk as much as you can
205
+ tolerate.
206
+ oLimit any kind of lifting.
207
+
208
+ -Diet: Eat a normal healthy diet. You may have some
209
+ constipation after surgery. You have been given medication to
210
+ help with this issue.
211
+
212
+ -Brace: You may have been given a brace. This brace is to be
213
+ worn when you are walking. You may take it off when sitting in a
214
+ chair or while lying in bed.
215
+
216
+ -Wound Care: Remove the dressing in 2 days. If the incision is
217
+ draining cover it with a new sterile dressing. If it is dry
218
+ then you can leave the incision open to the air. Once the
219
+ incision is completely dry (usually ___ days after the
220
+ operation) you may take a shower. Do not soak the incision in a
221
+ bath or pool. If the incision starts draining at anytime after
222
+ surgery, do not get the incision wet. Cover it with a sterile
223
+ dressing. Call the office.
224
+
225
+ -You should resume taking your normal home medications.
226
+
227
+ -You have also been given Additional Medications to control
228
+ your pain. Please allow 72 hours for refill of narcotic
229
+ prescriptions, so please plan ahead. You can either have them
230
+ mailed to your home or pick them up at the clinic located on
231
+ ___ 2. We are not allowed to call in or fax narcotic
232
+ prescriptions (oxycontin, oxycodone, percocet) to your pharmacy.
233
+ In addition, we are only allowed to write for pain medications
234
+ for 90 days from the date of surgery.
235
+
236
+ -Follow up:
237
+ oPlease Call the office and make an appointment for 2 weeks
238
+ after the day of your operation if this has not been done
239
+ already.
240
+ oAt the 2-week visit we will check your incision, take baseline
241
+ X-rays and answer any questions. We may at that time start
242
+ physical therapy.
243
+ oWe will then see you at 6 weeks from the day of the operation
244
+ and at that time release you to full activity.
245
+
246
+ Please call the office if you have a fever>101.5 degrees
247
+ Fahrenheit and/or drainage from your wound.
248
+
249
+
250
+ Followup Instructions:
251
+ ___
252
+
253
+ [RADIOLOGY NOTE]
254
+ LUMBAR SPINE ON ___
255
+
256
+ CLINICAL HISTORY: Fusion and laminectomy.
257
+
258
+ Three intraoperative films are submitted. The first shows a posterior
259
+ instrument at the L4/5 level where there is grade 1 spondylolisthesis. The
260
+ next two films show laminectomy defect with bilateral pedicle screws with
261
+ posterior rods and roughly stable spondylolisthesis.
262
+
263
+ IMPRESSION: There are post-surgical changes as described above.
264
+
265
+ [RADIOLOGY NOTE]
266
+ REASON FOR EXAMINATION: Followup of a patient after L4-L5 laminectomy and
267
+ posterior fusion.
268
+
269
+ AP and lateral radiograph of the lumbar spine was reviewed in comparison to
270
+ the prior studies.
271
+
272
+ There is preserved alignment of the lumbar spine. The screws appears to be
273
+ unremarkable. There is no evidence of fracture. The degenerative changes of
274
+ the lumbar spine appears to be visible.
275
+
276
+ Extensive calcifications of the aorta and iliac arteries are noted.
summaries/subject_12991336_hadm_26941734_model_input.txt ADDED
@@ -0,0 +1,304 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ PRE-OPERATIVE SUMMARY INPUT (SINGLE ADMISSION):
2
+
3
+ PATIENT:
4
+ - Age: 70
5
+ - Gender: F
6
+
7
+ ADMISSION:
8
+ - Admission ID: 26941734
9
+ - Admission Type: SURGICAL SAME DAY ADMISSION
10
+ - Admission Location: PHYSICIAN REFERRAL
11
+ - Discharge Location: SKILLED NURSING FACILITY
12
+ - Insurance: Medicare
13
+ - Race: WHITE
14
+ - Marital Status: MARRIED
15
+ - Language: ENGLISH
16
+
17
+ PROCEDURES (5 total):
18
+ 1. ICD-9: 8108
19
+ 2. ICD-9: 0309
20
+ 3. ICD-9: 0309
21
+ 4. ICD-9: 8162
22
+ 5. ICD-9: 9904
23
+
24
+ DIAGNOSES (10 total):
25
+ 1. ICD-9: 7384
26
+ 2. ICD-9: 4351
27
+ 3. ICD-9: 4019
28
+ 4. ICD-9: V433
29
+ 5. ICD-9: 71590
30
+ 6. ICD-9: 27800
31
+ 7. ICD-9: 53081
32
+ 8. ICD-9: V1254
33
+ 9. ICD-9: V1083
34
+ 10. ICD-9: V4589
35
+
36
+ LABORATORY RESULTS:
37
+ Total laboratory events: 112
38
+ Most frequent lab tests:
39
+ - Item ID 50868: 4 measurements
40
+ - Item ID 50882: 4 measurements
41
+ - Item ID 50902: 4 measurements
42
+ - Item ID 50912: 4 measurements
43
+ - Item ID 50931: 4 measurements
44
+
45
+ CLINICAL NOTES:
46
+ [DISCHARGE]
47
+ Name: ___ Unit No: ___
48
+
49
+ Admission Date: ___ Discharge Date: ___
50
+
51
+ Date of Birth: ___ Sex: F
52
+
53
+ Service: ORTHOPAEDICS
54
+
55
+ Allergies:
56
+ Patient recorded as having No Known Allergies to Drugs
57
+
58
+ Attending: ___.
59
+
60
+ Chief Complaint:
61
+ ___ with neurogenic claudication and low back pain from spinal
62
+ stenosis.
63
+
64
+ Major Surgical or Invasive Procedure:
65
+ ___: L3-L5 laminectomies and L4-L5 instrumented posterior
66
+ spine fusion.
67
+
68
+
69
+ History of Present Illness:
70
+ ___ with neurogenic claudication and low back pain from spinal
71
+ stenosis.
72
+
73
+ Past Medical History:
74
+ PMH: HTN, OA, possible TIA. PSH: bioprosthetic aortic valve
75
+ replacement ___ for aortic stenosis (rheumatic fever when ___
76
+ - had postop afib, tonsillectomy, c-section, skin cancer
77
+ excision, varicose vein stripping.
78
+
79
+ Physical Exam:
80
+ obese female with low back pain and bilateral leg symptoms from
81
+ neurogenic claudication.
82
+
83
+ Pertinent Results:
84
+ ___ 06:03PM GLUCOSE-123* UREA N-19 CREAT-0.8 SODIUM-137
85
+ POTASSIUM-4.2 CHLORIDE-104 TOTAL CO2-26 ANION GAP-11
86
+ ___ 06:03PM estGFR-Using this
87
+ ___ 06:03PM WBC-8.6# RBC-3.15* HGB-10.0* HCT-30.2* MCV-96
88
+ MCH-31.8 MCHC-33.2 RDW-13.3
89
+ ___ 06:03PM PLT COUNT-246
90
+ ___ 06:03PM ___ PTT-23.6 ___
91
+ ___ 04:06PM TYPE-ART PO2-241* PCO2-38 PH-7.43 TOTAL
92
+ CO2-26 BASE XS-1
93
+
94
+ Brief Hospital Course:
95
+ Patient was admitted to the ___ Spine Surgery Service and
96
+ taken to the Operating Room for the above procedure. Refer to
97
+ the dictated operative note for further details. The surgery
98
+ was without complication and the patient was transferred to the
99
+ PACU in a stable condition. TEDs/pnemoboots were used for
100
+ postoperative DVT prophylaxis. Intravenous antibiotics were
101
+ continued for 24hrs postop per standard protocol. Initial postop
102
+ pain was controlled with a PCA. Diet was advanced as tolerated.
103
+ The patient was transitioned to oral pain medication when
104
+ tolerating PO diet. Foley and hemovac were removed. Physical
105
+ therapy was consulted for mobilization OOB to ambulate. they
106
+ recommend rehab placement to continue to work on mobilization
107
+ and help to transition to home. received 2 transfusions and HCT
108
+ stabilized. Hospital course was otherwise unremarkable. On the
109
+ day of discharge the patient was afebrile with stable vital
110
+ signs, comfortable on oral pain control and tolerating a regular
111
+ diet. postop xrays show good alignment and hardware in place at
112
+ L4-L5.
113
+
114
+ Medications on Admission:
115
+ NKDA. Meds: folic acid, lasix, metoprolol, tramadol.
116
+
117
+ Discharge Medications:
118
+ 1. Docusate Sodium 100 mg Capsule Sig: One (1) Capsule PO BID (2
119
+ times a day).
120
+ Disp:*60 Capsule(s)* Refills:*2*
121
+ 2. Folic Acid 1 mg Tablet Sig: One (1) Tablet PO DAILY (Daily).
122
+
123
+ 3. Metoprolol Tartrate 25 mg Tablet Sig: One (1) Tablet PO BID
124
+ (2 times a day).
125
+ 4. Furosemide 40 mg Tablet Sig: One (1) Tablet PO QOD ().
126
+ 5. Senna 8.6 mg Tablet Sig: One (1) Tablet PO BID (2 times a
127
+ day) as needed for constipation.
128
+ 6. Hydromorphone 2 mg Tablet Sig: ___ Tablets PO Q3H (every 3
129
+ hours) as needed for pain.
130
+ Disp:*90 Tablet(s)* Refills:*0*
131
+ 7. Diazepam 5 mg Tablet Sig: One (1) Tablet PO Q6H (every 6
132
+ hours) as needed for spasm/anxiety.
133
+ 8. Zolpidem 5 mg Tablet Sig: Two (2) Tablet PO HS (at bedtime)
134
+ as needed for insomnia.
135
+
136
+
137
+ Discharge Disposition:
138
+ Extended Care
139
+
140
+ Facility:
141
+ ___
142
+
143
+ Discharge Diagnosis:
144
+ ___ with neurogenic claudication and low back pain from spinal
145
+ stenosis.
146
+
147
+
148
+ Discharge Condition:
149
+ stable
150
+
151
+
152
+ Discharge Instructions:
153
+ You have undergone the following operation: Lumbar Decompression
154
+ With Fusion
155
+
156
+ Immediately after the operation:
157
+
158
+ -Activity: You should not lift anything greater than 10 lbs for
159
+ 2 weeks. You will be more comfortable if you do not sit or stand
160
+ more than ~45 minutes without getting up and walking around.
161
+
162
+ -Rehabilitation/ Physical Therapy:
163
+ o2-3 times a day you should go for a walk for ___ minutes as
164
+ part of your recovery. You can walk as much as you can
165
+ tolerate.
166
+ oLimit any kind of lifting.
167
+
168
+ -Diet: Eat a normal healthy diet. You may have some
169
+ constipation after surgery. You have been given medication to
170
+ help with this issue.
171
+
172
+ -Brace: You may have been given a brace. This brace is to be
173
+ worn when you are walking. You may take it off when sitting in a
174
+ chair or while lying in bed.
175
+
176
+ -Wound Care: Remove the dressing in 2 days. If the incision is
177
+ draining cover it with a new sterile dressing. If it is dry
178
+ then you can leave the incision open to the air. Once the
179
+ incision is completely dry (usually ___ days after the
180
+ operation) you may take a shower. Do not soak the incision in a
181
+ bath or pool. If the incision starts draining at anytime after
182
+ surgery, do not get the incision wet. Cover it with a sterile
183
+ dressing. Call the office.
184
+
185
+ -You should resume taking your normal home medications.
186
+
187
+ -You have also been given Additional Medications to control
188
+ your pain. Please allow 72 hours for refill of narcotic
189
+ prescriptions, so please plan ahead. You can either have them
190
+ mailed to your home or pick them up at the clinic located on
191
+ ___ 2. We are not allowed to call in or fax narcotic
192
+ prescriptions (oxycontin, oxycodone, percocet) to your pharmacy.
193
+ In addition, we are only allowed to write for pain medications
194
+ for 90 days from the date of surgery.
195
+
196
+ -Follow up:
197
+ oPlease Call the office and make an appointment for 2 weeks
198
+ after the day of your operation if this has not been done
199
+ already.
200
+ oAt the 2-week visit we will check your incision, take baseline
201
+ X-rays and answer any questions. We may at that time start
202
+ physical therapy.
203
+ oWe will then see you at 6 weeks from the day of the operation
204
+ and at that time release you to full activity.
205
+
206
+ Please call the office if you have a fever>101.5 degrees
207
+ Fahrenheit and/or drainage from your wound.
208
+
209
+
210
+ Followup Instructions:
211
+ ___
212
+
213
+
214
+ [RADIOLOGY] LUMBAR SPINE ON ___
215
+
216
+ CLINICAL HISTORY: Fusion and laminectomy.
217
+
218
+ Three intraoperative films are submitted. The first shows a posterior
219
+ instrument at the L4/5 level where there is grade 1 spondylolisthesis. The
220
+ next two films show laminectomy defect with bilateral pedicle screws with
221
+ posterior rods and roughly stable spondylolisthesis.
222
+
223
+ IMPRESSION: There are post-surgical changes as described above.
224
+
225
+
226
+ [RADIOLOGY] REASON FOR EXAMINATION: Followup of a patient after L4-L5 laminectomy and
227
+ posterior fusion.
228
+
229
+ AP and lateral radiograph of the lumbar spine was reviewed in comparison to
230
+ the prior studies.
231
+
232
+ There is preserved alignment of the lumbar spine. The screws appears to be
233
+ unremarkable. There is no evidence of fracture. The degenerative changes of
234
+ the lumbar spine appears to be visible.
235
+
236
+ Extensive calcifications of the aorta and iliac arteries are noted.
237
+
238
+ PROCEDURES (readable):
239
+ - 8108 (ICD-9) — Lumbar and lumbosacral fusion of the anterior column, posterior technique
240
+ - 0309 (ICD-9) — Other exploration and decompression of spinal canal
241
+ - 0309 (ICD-9) — Other exploration and decompression of spinal canal
242
+ - 8162 (ICD-9) — Fusion or refusion of 2-3 vertebrae
243
+ - 9904 (ICD-9) — Transfusion of packed cells
244
+
245
+ DIAGNOSES (readable):
246
+ - 7384 (ICD-9) — Acquired spondylolisthesis
247
+ - 4351 (ICD-9) — Vertebral artery syndrome
248
+ - 4019 (ICD-9) — Unspecified essential hypertension
249
+ - V433 (ICD-9) — Heart valve replaced by other means
250
+ - 71590 (ICD-9) — Osteoarthrosis, unspecified whether generalized or localized, site unspecified
251
+ - 27800 (ICD-9) — Obesity, unspecified
252
+ - 53081 (ICD-9) — Esophageal reflux
253
+ - V1254 (ICD-9) — Personal history of transient ischemic attack (TIA), and cerebral infarction without residual deficits
254
+ - V1083 (ICD-9) — Personal history of other malignant neoplasm of skin
255
+ - V4589 (ICD-9) — Other postprocedural status
256
+
257
+ LAB ITEMS (readable, deduped):
258
+ - Anion Gap (Item 50868)
259
+ - Base Excess (Item 50802)
260
+ - Bicarbonate (Item 50882)
261
+ - Bilirubin (Item 51464)
262
+ - Blood (Item 51466)
263
+ - Calculated Total CO2 (Item 50804)
264
+ - Chloride (Item 50902)
265
+ - Chloride, Whole Blood (Item 50806)
266
+ - Creatinine (Item 50912)
267
+ - Estimated GFR (MDRD equation) (Item 50920)
268
+ - Free Calcium (Item 50808)
269
+ - Glucose (Item 50809)
270
+ - Glucose (Item 50931)
271
+ - Glucose (Item 51478)
272
+ - Hematocrit (Item 51221)
273
+ - Hematocrit, Calculated (Item 50810)
274
+ - Hemoglobin (Item 50811)
275
+ - Hemoglobin (Item 51222)
276
+ - INR(PT) (Item 51237)
277
+ - Ketone (Item 51484)
278
+ - Lactate (Item 50813)
279
+ - Leukocytes (Item 51486)
280
+ - MCH (Item 51248)
281
+ - MCHC (Item 51249)
282
+ - MCV (Item 51250)
283
+ - Nitrite (Item 51487)
284
+ - PT (Item 51274)
285
+ - PTT (Item 51275)
286
+ - Platelet Count (Item 51265)
287
+ - Potassium (Item 50971)
288
+ - Potassium, Whole Blood (Item 50822)
289
+ - Protein (Item 51492)
290
+ - RDW (Item 51277)
291
+ - Red Blood Cells (Item 51279)
292
+ - Sodium (Item 50983)
293
+ - Sodium, Whole Blood (Item 50824)
294
+ - Specific Gravity (Item 51498)
295
+ - Specimen Type (Item 52033)
296
+ - Urea Nitrogen (Item 51006)
297
+ - Urine Appearance (Item 51506)
298
+ - Urine Color (Item 51508)
299
+ - Urobilinogen (Item 51514)
300
+ - White Blood Cells (Item 51301)
301
+ - pCO2 (Item 50818)
302
+ - pH (Item 50820)
303
+ - pH (Item 51491)
304
+ - pO2 (Item 50821)
summaries/subject_12991336_hadm_26941734_summary.txt ADDED
@@ -0,0 +1,74 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ **Patient Summary**
2
+
3
+ **Patient Information**
4
+
5
+ * Name: [Not provided]
6
+ * Age: 70
7
+ * Gender: Female
8
+ * Admission ID: 26941734
9
+ * Admission Type: Surgical Same Day Admission
10
+ * Admission Location: Physician Referral
11
+ * Discharge Location: Skilled Nursing Facility
12
+ * Insurance: Medicare
13
+ * Race: White
14
+ * Marital Status: Married
15
+ * Language: English
16
+
17
+ **Procedure Summary**
18
+
19
+ The patient underwent a surgical procedure for spinal stenosis, specifically:
20
+
21
+ 1. ICD-9: 8108 - Lumbar and lumbosacral fusion of the anterior column, posterior technique
22
+ 2. ICD-9: 0309 - Other exploration and decompression of spinal canal (x2)
23
+ 3. ICD-9: 8162 - Fusion or refusion of 2-3 vertebrae
24
+ 4. ICD-9: 9904 - Transfusion of packed cells
25
+
26
+ **Diagnosis Summary**
27
+
28
+ The patient has the following diagnoses:
29
+
30
+ 1. ICD-9: 7384 - Acquired spondylolisthesis
31
+ 2. ICD-9: 4351 - Vertebral artery syndrome
32
+ 3. ICD-9: 4019 - Unspecified essential hypertension
33
+ 4. V433 - Heart valve replaced by other means
34
+ 5. 71590 - Osteoarthrosis, unspecified whether generalized or localized, site unspecified
35
+ 6. 27800 - Obesity, unspecified
36
+ 7. 53081 - Esophageal reflux
37
+ 8. V1254 - Personal history of transient ischemic attack (TIA), and cerebral infarction without residual deficits
38
+ 9. V1083 - Personal history of other malignant neoplasm of skin
39
+ 10. V4589 - Other postprocedural status
40
+
41
+ **Laboratory Results**
42
+
43
+ The patient had 112 laboratory events, with the most frequent tests being:
44
+
45
+ * Anion Gap (Item 50868)
46
+ * Base Excess (Item 50802)
47
+ * Bicarbonate (Item 50882)
48
+ * Creatinine (Item 50912)
49
+ * Estimated GFR (MDRD equation) (Item 50920)
50
+ * Free Calcium (Item 50808)
51
+ * Glucose (Item 50809)
52
+ * Hemoglobin (Item 50811)
53
+ * INR(PT) (Item 51237)
54
+ * Platelet Count (Item 51265)
55
+ * Potassium (Item 50971)
56
+ * Sodium (Item 50983)
57
+ * Urea Nitrogen (Item 51006)
58
+
59
+ **Clinical Notes**
60
+
61
+ The patient was admitted for spinal stenosis and underwent a lumbar decompression with fusion procedure. The patient had a stable hospital course, with no complications. The patient was discharged to a skilled nursing facility with a stable condition.
62
+
63
+ **Medications**
64
+
65
+ The patient was prescribed the following medications:
66
+
67
+ * Docusate Sodium 100 mg Capsule Sig: One (1) Capsule PO BID (2 times a day)
68
+ * Folic Acid 1 mg Tablet Sig: One (1) Tablet PO DAILY (Daily)
69
+ * Metoprolol Tartrate 25 mg Tablet Sig: One (1) Tablet PO BID (2 times a day)
70
+ * Furosemide 40 mg Tablet Sig: One (1) Tablet PO QOD (every other day)
71
+ * Senna 8.6 mg Tablet Sig: One (1) Tablet PO BID (2 times a day) as needed for constipation
72
+ * Hydromorphone 2 mg Tablet Sig: ___ Tablets PO Q3H (every 3 hours) as needed for pain
73
+ * Diazepam 5 mg Tablet Sig: One (1) Tablet PO Q6H (every 6 hours) as needed for spasm/anxiety
74
+ * Zolpidem 5 mg Tablet Sig: Two (2) Tablet PO HS (at bedtime) as needed for insomnia
summaries/subject_14497209_hadm_20716207_input.txt ADDED
@@ -0,0 +1,144 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ PRE-OPERATIVE SUMMARY INPUT (SINGLE ADMISSION):
2
+
3
+ PATIENT:
4
+ - Age: 62
5
+ - Gender: M
6
+
7
+ ADMISSION:
8
+ - Admission ID: 20716207
9
+ - Admission Type: SURGICAL SAME DAY ADMISSION
10
+ - Admission Location: PHYSICIAN REFERRAL
11
+ - Discharge Location: HOME
12
+ - Insurance: Other
13
+ - Race: WHITE
14
+ - Marital Status: DIVORCED
15
+ - Language: ENGLISH
16
+
17
+ PROCEDURES (2 total):
18
+ - 0309 (ICD-9)
19
+ - 0309 (ICD-9)
20
+
21
+ DIAGNOSES (2 total):
22
+ - 72403 (ICD-9)
23
+ - 32723 (ICD-9)
24
+
25
+ LABORATORY RESULTS:
26
+ - Item ID 51221: 1 measurements, 2154-12-11 05:00:00 to 2154-12-11 05:00:00
27
+ - Item ID 51222: 1 measurements, 2154-12-11 05:00:00 to 2154-12-11 05:00:00
28
+ - Item ID 51248: 1 measurements, 2154-12-11 05:00:00 to 2154-12-11 05:00:00
29
+ - Item ID 51249: 1 measurements, 2154-12-11 05:00:00 to 2154-12-11 05:00:00
30
+ - Item ID 51250: 1 measurements, 2154-12-11 05:00:00 to 2154-12-11 05:00:00
31
+ - Item ID 51265: 1 measurements, 2154-12-11 05:00:00 to 2154-12-11 05:00:00
32
+ - Item ID 51277: 1 measurements, 2154-12-11 05:00:00 to 2154-12-11 05:00:00
33
+ - Item ID 51279: 1 measurements, 2154-12-11 05:00:00 to 2154-12-11 05:00:00
34
+ - Item ID 51301: 1 measurements, 2154-12-11 05:00:00 to 2154-12-11 05:00:00
35
+
36
+ CLINICAL NOTES:
37
+ [DISCHARGE NOTE]
38
+ Name: ___ Unit No: ___
39
+
40
+ Admission Date: ___ Discharge Date: ___
41
+
42
+ Date of Birth: ___ Sex: M
43
+
44
+ Service: ORTHOPAEDICS
45
+
46
+ Allergies:
47
+ No Known Allergies / Adverse Drug Reactions
48
+
49
+ Attending: ___.
50
+
51
+ Chief Complaint:
52
+ Lumbar stenosis
53
+
54
+ Major Surgical or Invasive Procedure:
55
+ Laminectomy L3/4
56
+
57
+
58
+ History of Present Illness:
59
+ see admit H&P
60
+
61
+ Past Medical History:
62
+ see admit H&P
63
+
64
+ Social History:
65
+ ___
66
+ Family History:
67
+ see admit H&P
68
+
69
+ Pertinent Results:
70
+ ___ 05:00AM BLOOD WBC-12.3*# RBC-4.19* Hgb-14.3 Hct-40.6
71
+ MCV-97 MCH-34.0* MCHC-35.1* RDW-13.0 Plt ___
72
+
73
+ Brief Hospital Course:
74
+ Patient underwent above mentioned procedure, tolerating it well.
75
+ Post-op, pain was controlled with IV followed by PO meds.
76
+ ___ ABx were continued 24 hours. ___ was consulted for
77
+ assistance with patient's care.
78
+
79
+ Once patient had adequate PO pain control, once ambulating
80
+ independently, and once tolerating a diet, he was deemed stable
81
+ for discharge home
82
+
83
+ Medications on Admission:
84
+ see admit H&P
85
+
86
+ Discharge Medications:
87
+ 1. acetaminophen 325 mg Tablet Sig: ___ Tablets PO Q6H (every 6
88
+ hours) as needed for fever, pain.
89
+ 2. oxycodone 5 mg Tablet Sig: ___ Tablets PO Q3H (every 3 hours)
90
+ as needed for pain.
91
+ Disp:*80 Tablet(s)* Refills:*0*
92
+ 3. diazepam 5 mg Tablet Sig: One (1) Tablet PO Q6H (every 6
93
+ hours) as needed for spasm.
94
+ Disp:*30 Tablet(s)* Refills:*0*
95
+ 4. docusate sodium 100 mg Capsule Sig: One (1) Capsule PO BID (2
96
+ times a day).
97
+ Disp:*60 Capsule(s)* Refills:*0*
98
+ 5. ezetimibe 10 mg Tablet Sig: One (1) Tablet PO DAILY (Daily).
99
+
100
+ 6. finasteride 5 mg Tablet Sig: One (1) Tablet PO DAILY (Daily).
101
+
102
+ 7. tamsulosin 0.4 mg Capsule, Ext Release 24 hr Sig: One (1)
103
+ Capsule, Ext Release 24 hr PO HS (at bedtime).
104
+
105
+
106
+ Discharge Disposition:
107
+ Home with Service
108
+
109
+ Discharge Diagnosis:
110
+ Lumbar stenosis
111
+
112
+
113
+ Discharge Condition:
114
+ Mental Status: Clear and coherent.
115
+ Level of Consciousness: Alert and interactive.
116
+ Activity Status: Ambulatory - requires assistance or aid (walker
117
+ or cane).
118
+
119
+
120
+ Discharge Instructions:
121
+ 1. keep incision clean and dry
122
+ 2. ___ shower with incision covered, change dressing afterwards
123
+ 3. no bending, twisting, lifting > 10 lbs
124
+ 4. no baths
125
+ 5. ambulate as much as tolerated
126
+ Physical Therapy:
127
+ Please progress mobility, no bending, twisting, lifting > 10 lbs
128
+ Treatments Frequency:
129
+ Keep incision clean and dry. ___ shower with incision covered,
130
+ change dressing afterwards
131
+
132
+ Followup Instructions:
133
+ ___
134
+
135
+ [RADIOLOGY NOTE]
136
+ STUDY: Lumbar spine intraoperative study, ___.
137
+
138
+ CLINICAL HISTORY: Patient with laminectomy of lumbar spine.
139
+
140
+ FINDINGS: Lateral view of the lumbar spine demonstrates a posterior marker at
141
+ the level of the superior endplate of L3. There is degenerative change with
142
+ disc space narrowing at multiple levels worse at L3-L4 and L4-L5. Anterior
143
+ spurring is present. There is no abnormal ___- or retrolisthesis. Please
144
+ refer to the operative note for additional details.
summaries/subject_14497209_hadm_20716207_model_input.txt ADDED
@@ -0,0 +1,161 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ PRE-OPERATIVE SUMMARY INPUT (SINGLE ADMISSION):
2
+
3
+ PATIENT:
4
+ - Age: 62
5
+ - Gender: M
6
+
7
+ ADMISSION:
8
+ - Admission ID: 20716207
9
+ - Admission Type: SURGICAL SAME DAY ADMISSION
10
+ - Admission Location: PHYSICIAN REFERRAL
11
+ - Discharge Location: HOME
12
+ - Insurance: Other
13
+ - Race: WHITE
14
+ - Marital Status: DIVORCED
15
+ - Language: ENGLISH
16
+
17
+ PROCEDURES (2 total):
18
+ 1. ICD-9: 0309
19
+ 2. ICD-9: 0309
20
+
21
+ DIAGNOSES (2 total):
22
+ 1. ICD-9: 72403
23
+ 2. ICD-9: 32723
24
+
25
+ LABORATORY RESULTS:
26
+ Total laboratory events: 9
27
+ Most frequent lab tests:
28
+ - Item ID 51221: 1 measurements
29
+ - Item ID 51222: 1 measurements
30
+ - Item ID 51248: 1 measurements
31
+ - Item ID 51249: 1 measurements
32
+ - Item ID 51250: 1 measurements
33
+
34
+ CLINICAL NOTES:
35
+ [DISCHARGE]
36
+ Name: ___ Unit No: ___
37
+
38
+ Admission Date: ___ Discharge Date: ___
39
+
40
+ Date of Birth: ___ Sex: M
41
+
42
+ Service: ORTHOPAEDICS
43
+
44
+ Allergies:
45
+ No Known Allergies / Adverse Drug Reactions
46
+
47
+ Attending: ___.
48
+
49
+ Chief Complaint:
50
+ Lumbar stenosis
51
+
52
+ Major Surgical or Invasive Procedure:
53
+ Laminectomy L3/4
54
+
55
+
56
+ History of Present Illness:
57
+ see admit H&P
58
+
59
+ Past Medical History:
60
+ see admit H&P
61
+
62
+ Social History:
63
+ ___
64
+ Family History:
65
+ see admit H&P
66
+
67
+ Pertinent Results:
68
+ ___ 05:00AM BLOOD WBC-12.3*# RBC-4.19* Hgb-14.3 Hct-40.6
69
+ MCV-97 MCH-34.0* MCHC-35.1* RDW-13.0 Plt ___
70
+
71
+ Brief Hospital Course:
72
+ Patient underwent above mentioned procedure, tolerating it well.
73
+ Post-op, pain was controlled with IV followed by PO meds.
74
+ ___ ABx were continued 24 hours. ___ was consulted for
75
+ assistance with patient's care.
76
+
77
+ Once patient had adequate PO pain control, once ambulating
78
+ independently, and once tolerating a diet, he was deemed stable
79
+ for discharge home
80
+
81
+ Medications on Admission:
82
+ see admit H&P
83
+
84
+ Discharge Medications:
85
+ 1. acetaminophen 325 mg Tablet Sig: ___ Tablets PO Q6H (every 6
86
+ hours) as needed for fever, pain.
87
+ 2. oxycodone 5 mg Tablet Sig: ___ Tablets PO Q3H (every 3 hours)
88
+ as needed for pain.
89
+ Disp:*80 Tablet(s)* Refills:*0*
90
+ 3. diazepam 5 mg Tablet Sig: One (1) Tablet PO Q6H (every 6
91
+ hours) as needed for spasm.
92
+ Disp:*30 Tablet(s)* Refills:*0*
93
+ 4. docusate sodium 100 mg Capsule Sig: One (1) Capsule PO BID (2
94
+ times a day).
95
+ Disp:*60 Capsule(s)* Refills:*0*
96
+ 5. ezetimibe 10 mg Tablet Sig: One (1) Tablet PO DAILY (Daily).
97
+
98
+ 6. finasteride 5 mg Tablet Sig: One (1) Tablet PO DAILY (Daily).
99
+
100
+ 7. tamsulosin 0.4 mg Capsule, Ext Release 24 hr Sig: One (1)
101
+ Capsule, Ext Release 24 hr PO HS (at bedtime).
102
+
103
+
104
+ Discharge Disposition:
105
+ Home with Service
106
+
107
+ Discharge Diagnosis:
108
+ Lumbar stenosis
109
+
110
+
111
+ Discharge Condition:
112
+ Mental Status: Clear and coherent.
113
+ Level of Consciousness: Alert and interactive.
114
+ Activity Status: Ambulatory - requires assistance or aid (walker
115
+ or cane).
116
+
117
+
118
+ Discharge Instructions:
119
+ 1. keep incision clean and dry
120
+ 2. ___ shower with incision covered, change dressing afterwards
121
+ 3. no bending, twisting, lifting > 10 lbs
122
+ 4. no baths
123
+ 5. ambulate as much as tolerated
124
+ Physical Therapy:
125
+ Please progress mobility, no bending, twisting, lifting > 10 lbs
126
+ Treatments Frequency:
127
+ Keep incision clean and dry. ___ shower with incision covered,
128
+ change dressing afterwards
129
+
130
+ Followup Instructions:
131
+ ___
132
+
133
+
134
+ [RADIOLOGY] STUDY: Lumbar spine intraoperative study, ___.
135
+
136
+ CLINICAL HISTORY: Patient with laminectomy of lumbar spine.
137
+
138
+ FINDINGS: Lateral view of the lumbar spine demonstrates a posterior marker at
139
+ the level of the superior endplate of L3. There is degenerative change with
140
+ disc space narrowing at multiple levels worse at L3-L4 and L4-L5. Anterior
141
+ spurring is present. There is no abnormal ___- or retrolisthesis. Please
142
+ refer to the operative note for additional details.
143
+
144
+ PROCEDURES (readable):
145
+ - 0309 (ICD-9) — Other exploration and decompression of spinal canal
146
+ - 0309 (ICD-9) — Other exploration and decompression of spinal canal
147
+
148
+ DIAGNOSES (readable):
149
+ - 72403 (ICD-9) — Spinal stenosis, lumbar region, with neurogenic claudication
150
+ - 32723 (ICD-9) — Obstructive sleep apnea (adult)(pediatric)
151
+
152
+ LAB ITEMS (readable, deduped):
153
+ - Hematocrit (Item 51221)
154
+ - Hemoglobin (Item 51222)
155
+ - MCH (Item 51248)
156
+ - MCHC (Item 51249)
157
+ - MCV (Item 51250)
158
+ - Platelet Count (Item 51265)
159
+ - RDW (Item 51277)
160
+ - Red Blood Cells (Item 51279)
161
+ - White Blood Cells (Item 51301)
summaries/subject_14497209_hadm_20716207_summary.txt ADDED
@@ -0,0 +1,85 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ **PRE-OPERATIVE SUMMARY**
2
+
3
+ **Patient Information**
4
+
5
+ * Name: [Not provided]
6
+ * Age: 62
7
+ * Gender: Male
8
+ * Admission ID: 20716207
9
+ * Admission Type: Surgical Same Day Admission
10
+ * Admission Location: Physician Referral
11
+ * Discharge Location: Home
12
+ * Insurance: Other
13
+ * Race: White
14
+ * Marital Status: Divorced
15
+ * Language: English
16
+
17
+ **Diagnosis and Procedure**
18
+
19
+ * Diagnosis:
20
+ + ICD-9: 72403 - Spinal stenosis, lumbar region, with neurogenic claudication
21
+ + ICD-9: 32723 - Obstructive sleep apnea (adult)(pediatric)
22
+ * Procedure:
23
+ + ICD-9: 0309 - Other exploration and decompression of spinal canal (Laminectomy L3/4)
24
+
25
+ **Laboratory Results**
26
+
27
+ * Total laboratory events: 9
28
+ * Most frequent lab tests:
29
+ + Hematocrit (Item 51221): 1 measurement
30
+ + Hemoglobin (Item 51222): 1 measurement
31
+ + MCH (Item 51248): 1 measurement
32
+ + MCHC (Item 51249): 1 measurement
33
+ + MCV (Item 51250): 1 measurement
34
+ + Platelet Count (Item 51265): 1 measurement
35
+ + RDW (Item 51277): 1 measurement
36
+ + Red Blood Cells (Item 51279): 1 measurement
37
+ + White Blood Cells (Item 51301): 1 measurement
38
+
39
+ **Clinical Notes**
40
+
41
+ * Admission Date: [Not provided]
42
+ * Discharge Date: [Not provided]
43
+ * Date of Birth: [Not provided]
44
+ * Service: Orthopedics
45
+ * Allergies: No known allergies or adverse drug reactions
46
+ * Attending: [Not provided]
47
+ * Chief Complaint: Lumbar stenosis
48
+ * Major Surgical or Invasive Procedure: Laminectomy L3/4
49
+ * History of Present Illness: See admit H&P
50
+ * Past Medical History: See admit H&P
51
+ * Social History: [Not provided]
52
+ * Family History: See admit H&P
53
+
54
+ **Medications**
55
+
56
+ * Medications on Admission:
57
+ + Acetaminophen 325 mg Tablet Sig: [Not provided]
58
+ + Oxycodone 5 mg Tablet Sig: [Not provided]
59
+ + Diazepam 5 mg Tablet Sig: [Not provided]
60
+ + Docusate sodium 100 mg Capsule Sig: [Not provided]
61
+ + Ezetimibe 10 mg Tablet Sig: [Not provided]
62
+ + Finasteride 5 mg Tablet Sig: [Not provided]
63
+ + Tamsulosin 0.4 mg Capsule, Ext Release 24 hr Sig: [Not provided]
64
+ * Discharge Medications:
65
+ + Acetaminophen 325 mg Tablet Sig: [Not provided]
66
+ + Oxycodone 5 mg Tablet Sig: [Not provided]
67
+ + Diazepam 5 mg Tablet Sig: [Not provided]
68
+ + Docusate sodium 100 mg Capsule Sig: [Not provided]
69
+ + Ezetimibe 10 mg Tablet Sig: [Not provided]
70
+ + Finasteride 5 mg Tablet Sig: [Not provided]
71
+ + Tamsulosin 0.4 mg Capsule, Ext Release 24 hr Sig: [Not provided]
72
+
73
+ **Discharge Instructions**
74
+
75
+ * Keep incision clean and dry
76
+ * Shower with incision covered, change dressing afterwards
77
+ * No bending, twisting, lifting > 10 lbs
78
+ * No baths
79
+ * Ambulate as much as tolerated
80
+ * Physical Therapy: Progress mobility, no bending, twisting, lifting > 10 lbs
81
+ * Treatments Frequency: Keep incision clean and dry, shower with incision covered, change dressing afterwards
82
+
83
+ **Follow-up Instructions**
84
+
85
+ * [
summaries/subject_14497209_hadm_24931338_input.txt ADDED
@@ -0,0 +1,412 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ PRE-OPERATIVE SUMMARY INPUT (SINGLE ADMISSION):
2
+
3
+ PATIENT:
4
+ - Age: 62
5
+ - Gender: M
6
+
7
+ ADMISSION:
8
+ - Admission ID: 24931338
9
+ - Admission Type: SURGICAL SAME DAY ADMISSION
10
+ - Admission Location: PHYSICIAN REFERRAL
11
+ - Discharge Location: SKILLED NURSING FACILITY
12
+ - Insurance: Medicare
13
+ - Race: WHITE
14
+ - Marital Status: DIVORCED
15
+ - Language: ENGLISH
16
+
17
+ PROCEDURES (3 total):
18
+ - 3612 (ICD-9)
19
+ - 3615 (ICD-9)
20
+ - 3961 (ICD-9)
21
+
22
+ DIAGNOSES (15 total):
23
+ - 41401 (ICD-9)
24
+ - 4142 (ICD-9)
25
+ - 42731 (ICD-9)
26
+ - 2720 (ICD-9)
27
+ - 32723 (ICD-9)
28
+ - 4019 (ICD-9)
29
+ - 53081 (ICD-9)
30
+ - 60000 (ICD-9)
31
+ - 27800 (ICD-9)
32
+ - V8534 (ICD-9)
33
+ - 5531 (ICD-9)
34
+ - 30000 (ICD-9)
35
+ - V4987 (ICD-9)
36
+ - V5866 (ICD-9)
37
+ - V1582 (ICD-9)
38
+
39
+ LABORATORY RESULTS:
40
+ - Item ID 50802: 7 measurements, 2158-08-14 09:34:00 to 2158-08-14 19:34:00
41
+ - Item ID 50804: 7 measurements, 2158-08-14 09:34:00 to 2158-08-14 19:34:00
42
+ - Item ID 50806: 2 measurements, 2158-08-14 09:34:00 to 2158-08-14 14:00:00
43
+ - Item ID 50808: 6 measurements, 2158-08-14 09:34:00 to 2158-08-15 17:07:00
44
+ - Item ID 50809: 7 measurements, 2158-08-14 09:34:00 to 2158-08-14 19:34:00
45
+ - Item ID 50810: 4 measurements, 2158-08-14 09:34:00 to 2158-08-14 14:00:00
46
+ - Item ID 50811: 4 measurements, 2158-08-14 09:34:00 to 2158-08-14 14:00:00
47
+ - Item ID 50812: 2 measurements, 2158-08-14 09:34:00 to 2158-08-14 14:00:00
48
+ - Item ID 50813: 2 measurements, 2158-08-14 09:34:00 to 2158-08-14 14:00:00
49
+ - Item ID 50818: 7 measurements, 2158-08-14 09:34:00 to 2158-08-14 19:34:00
50
+ - Item ID 50820: 9 measurements, 2158-08-14 09:34:00 to 2158-08-15 17:07:00
51
+ - Item ID 50821: 7 measurements, 2158-08-14 09:34:00 to 2158-08-14 19:34:00
52
+ - Item ID 50822: 6 measurements, 2158-08-14 09:34:00 to 2158-08-14 19:34:00
53
+ - Item ID 50824: 3 measurements, 2158-08-14 09:34:00 to 2158-08-14 15:22:00
54
+ - Item ID 50828: 2 measurements, 2158-08-14 09:34:00 to 2158-08-14 14:00:00
55
+ - Item ID 50868: 6 measurements, 2158-08-14 15:13:00 to 2158-08-19 07:00:00
56
+ - Item ID 50882: 6 measurements, 2158-08-14 15:13:00 to 2158-08-19 07:00:00
57
+ - Item ID 50893: 1 measurements, 2158-08-15 02:22:00 to 2158-08-15 02:22:00
58
+ - Item ID 50902: 8 measurements, 2158-08-14 15:13:00 to 2158-08-19 07:00:00
59
+ - Item ID 50912: 8 measurements, 2158-08-14 15:13:00 to 2158-08-19 07:00:00
60
+ - Item ID 50920: 1 measurements, 2158-08-14 15:13:00 to 2158-08-14 15:13:00
61
+ - Item ID 50931: 5 measurements, 2158-08-15 02:22:00 to 2158-08-19 07:00:00
62
+ - Item ID 50960: 6 measurements, 2158-08-15 02:22:00 to 2158-08-19 07:00:00
63
+ - Item ID 50970: 2 measurements, 2158-08-15 02:22:00 to 2158-08-15 16:15:00
64
+ - Item ID 50971: 8 measurements, 2158-08-14 15:13:00 to 2158-08-19 07:00:00
65
+ - Item ID 50983: 8 measurements, 2158-08-14 15:13:00 to 2158-08-19 07:00:00
66
+ - Item ID 51006: 8 measurements, 2158-08-14 15:13:00 to 2158-08-19 07:00:00
67
+ - Item ID 51146: 1 measurements, 2158-08-14 14:00:00 to 2158-08-14 14:00:00
68
+ - Item ID 51200: 1 measurements, 2158-08-14 14:00:00 to 2158-08-14 14:00:00
69
+ - Item ID 51214: 1 measurements, 2158-08-14 14:00:00 to 2158-08-14 14:00:00
70
+ - Item ID 51221: 10 measurements, 2158-08-14 14:00:00 to 2158-08-19 07:00:00
71
+ - Item ID 51222: 7 measurements, 2158-08-14 14:00:00 to 2158-08-19 07:00:00
72
+ - Item ID 51237: 4 measurements, 2158-08-14 14:00:00 to 2158-08-19 07:00:00
73
+ - Item ID 51244: 1 measurements, 2158-08-14 14:00:00 to 2158-08-14 14:00:00
74
+ - Item ID 51248: 7 measurements, 2158-08-14 14:00:00 to 2158-08-19 07:00:00
75
+ - Item ID 51249: 7 measurements, 2158-08-14 14:00:00 to 2158-08-19 07:00:00
76
+ - Item ID 51250: 7 measurements, 2158-08-14 14:00:00 to 2158-08-19 07:00:00
77
+ - Item ID 51254: 1 measurements, 2158-08-14 14:00:00 to 2158-08-14 14:00:00
78
+ - Item ID 51256: 1 measurements, 2158-08-14 14:00:00 to 2158-08-14 14:00:00
79
+ - Item ID 51265: 7 measurements, 2158-08-14 14:00:00 to 2158-08-19 07:00:00
80
+ - Item ID 51266: 1 measurements, 2158-08-16 04:12:00 to 2158-08-16 04:12:00
81
+ - Item ID 51274: 4 measurements, 2158-08-14 14:00:00 to 2158-08-19 07:00:00
82
+ - Item ID 51275: 3 measurements, 2158-08-14 14:00:00 to 2158-08-15 02:22:00
83
+ - Item ID 51277: 7 measurements, 2158-08-14 14:00:00 to 2158-08-19 07:00:00
84
+ - Item ID 51279: 7 measurements, 2158-08-14 14:00:00 to 2158-08-19 07:00:00
85
+ - Item ID 51301: 7 measurements, 2158-08-14 14:00:00 to 2158-08-19 07:00:00
86
+ - Item ID 52033: 9 measurements, 2158-08-14 09:34:00 to 2158-08-15 17:07:00
87
+
88
+ CLINICAL NOTES:
89
+ [DISCHARGE NOTE]
90
+ Name: ___ Unit No: ___
91
+
92
+ Admission Date: ___ Discharge Date: ___
93
+
94
+ Date of Birth: ___ Sex: M
95
+
96
+ Service: CARDIOTHORACIC
97
+
98
+ Allergies:
99
+ No Known Allergies / Adverse Drug Reactions
100
+
101
+ Attending: ___
102
+
103
+ Chief Complaint:
104
+ Chest pain
105
+
106
+ Major Surgical or Invasive Procedure:
107
+ s/p CABG x 3(Lima-LAD, SVG-Om, SVG PDA) ___
108
+
109
+
110
+ History of Present Illness:
111
+ ___ year old gentleman who, according to Dr ___ of
112
+ ___, had been prior heavy smoker, but quit in ___, also has
113
+ hypercholesterolemia,who has been getting an exertional chest
114
+ pain syndrome starting in ___. He began exercises. At times,
115
+ he gets some heaviness in his chest, especially if he increases
116
+ his speed or elevation in his treadmill. The pain would resolve
117
+ at rest. He never had any rest pain, no associated shortness of
118
+ breath, pain did not radiate, and no lightheadedness or
119
+ palpitations. A stress echo showed he exercised for 8 minutes
120
+ on ___ protocol, began getting chest discomfort, 5 minutes
121
+ on exercise ___, that increased to ___ at peak exercise. His
122
+ EKG showed changes for LVH and he did develop ST depressions
123
+ with exercise and echo evidence of some ischemia in his
124
+ anteroseptum
125
+ and distal anterior wall. Cardiac Surgery asked to see and
126
+ evaluate for CABG.
127
+
128
+
129
+ Past Medical History:
130
+ Past Medical History:
131
+ Hypercholesterolemia
132
+ Hx tobacco use
133
+ Umbilical hernia,
134
+ BPH
135
+ Sleep Apnea
136
+ Past Surgical History:
137
+ Laminectomy
138
+
139
+
140
+ Social History:
141
+ ___
142
+ Family History:
143
+ unremarkable
144
+
145
+ Physical Exam:
146
+ Admission Exam:
147
+ Pulse:63 Resp:16 O2 sat:97% B/P:133/76
148
+ Height: Weight:109kg
149
+ General:
150
+ Skin: Dry [x] intact [x]
151
+ HEENT: PERRLA [x] EOMI [x]
152
+ Neck: Supple [x] Full ROM [x]
153
+ Chest: Lungs clear bilaterally [x]
154
+ Heart: RRR [x] Irregular [] Murmur [] grade
155
+ Abdomen: Soft [x] non-distended [x] non-tender [x] +BS [x]
156
+ Extremities: Warm [x], well-perfused [x] Edema [] _____
157
+ Varicosities: None [x]
158
+ Neuro: Grossly intact [x]
159
+ Pulses:
160
+ Femoral Right:+2 Left:+2
161
+ DP Right:+2 Left:+2
162
+ ___ Right:+2 Left:+2
163
+ Radial Right:Cath site Left:+2
164
+ Carotid Bruit: None
165
+
166
+ Discharge Exam
167
+ VS: T 99.5 HR 76 SR BP 91/51 RR 18 O2sat 93% 1LNP
168
+ Wt 107.6 kg Pre-op 109 kg
169
+ Gen: NAD
170
+ Neuro: A&O x3, MAE, nonfocal exam
171
+ CV: RRR, no M/R/G. sternum stable, incision CDI
172
+ Pulm: Decreased bases bilat
173
+ Abdm: soft, NT, +BS
174
+ Ext: warm, well perfused, 2+ bilat pedal edema
175
+
176
+
177
+ Pertinent Results:
178
+ Admission Labs:
179
+ ___ 09:34AM HGB-15.6 calcHCT-47
180
+ ___ 09:34AM freeCa-1.20
181
+ ___ 09:34AM GLUCOSE-100 LACTATE-0.9 NA+-140 K+-4.3
182
+ CL--102
183
+ ___ 02:00PM ___ 02:00PM ___ PTT-30.0 ___
184
+ ___ 02:00PM PLT COUNT-102*
185
+ ___ 02:00PM WBC-17.1*# RBC-4.31* HGB-14.0 HCT-41.1 MCV-95
186
+ MCH-32.6* MCHC-34.1 RDW-13.3
187
+ ___ 03:13PM UREA N-17 CREAT-1.0 SODIUM-139 POTASSIUM-4.8
188
+ CHLORIDE-108 TOTAL CO2-24 ANION GAP-12
189
+
190
+ Discharge Labs:
191
+ ___ 07:00AM BLOOD WBC-8.7 RBC-2.82* Hgb-9.3* Hct-26.4*
192
+ MCV-94 MCH-33.1* MCHC-35.3* RDW-12.9 Plt ___
193
+ ___ 07:00AM BLOOD Plt ___
194
+ ___ 07:00AM BLOOD ___
195
+ ___ 07:00AM BLOOD Glucose-114* UreaN-26* Creat-1.0 Na-136
196
+ K-3.8 Cl-94* HCO3-31 AnGap-15
197
+ ___ 06:40AM BLOOD Glucose-107* UreaN-27* Creat-1.0 Na-136
198
+ K-3.9 Cl-96 HCO3-31 AnGap-13
199
+ ___ 07:00AM BLOOD Mg-2.5
200
+
201
+ TEE: ___
202
+ Findings
203
+ LEFT ATRIUM: No spontaneous echo contrast is seen in the ___.
204
+ RIGHT ATRIUM/INTERATRIAL SEPTUM: Normal interatrial septum.
205
+ LEFT VENTRICLE: Normal LV wall thickness, cavity size, and
206
+ global systolic function (LVEF>55%).
207
+ RIGHT VENTRICLE: Normal RV chamber size and free wall motion.
208
+ AORTA: Normal ascending, transverse and descending thoracic
209
+ aorta with no atherosclerotic plaque.
210
+ AORTIC VALVE: Normal aortic valve leaflets (3). No AS. No AR.
211
+ MITRAL VALVE: Normal mitral valve leaflets with trivial MR.
212
+ ___ VALVE: Normal tricuspid valve leaflets with trivial
213
+ TR.
214
+ PULMONIC VALVE/PULMONARY ARTERY: Physiologic (normal) PR.
215
+ PERICARDIUM: No pericardial effusion.
216
+ GENERAL COMMENTS: A TEE was performed in the location listed
217
+ above. I certify I was present in compliance with ___
218
+ regulations. The patient was under general anesthesia throughout
219
+ the procedure. No TEE related complications.
220
+ Conclusions
221
+ Pre-CPB:
222
+ No spontaneous echo contrast is seen in the left atrial
223
+ appendage. Left ventricular wall thickness, cavity size, and
224
+ global systolic function are normal (LVEF>55%). Right
225
+ ventricular chamber size and free wall motion are normal. The
226
+ ascending, transverse and descending thoracic aorta are normal
227
+ in diameter. The aortic valve leaflets (3) appear structurally
228
+ normal with good leaflet excursion and no aortic stenosis or
229
+ aortic regurgitation. The mitral valve appears structurally
230
+ normal with trivial mitral regurgitation. There is no
231
+ pericardial effusion.
232
+ Post-CPB:
233
+ The patient is paced, on no inotropes.
234
+ Unchanged biventricular systolic fxn.
235
+ No AI, no MR. ___ intact.
236
+
237
+ Radiology Report CHEST (PA & LAT) Study Date of ___ 9:21
238
+ ___
239
+ Final Report:
240
+ IN COMPARISON WITH THE STUDY OF ___, THERE IS LITTLE
241
+ CHANGE. ATELECTATIC CHANGES ARE SEEN BILATERALLY, MORE PROMINENT
242
+ ON THE LEFT, WITH SMALL EFFUSIONS. NO VASCULAR CONGESTION OR
243
+ ACUTE FOCAL PNEUMONIA.
244
+ ___, MD electronically signed on ___
245
+ 8:35 AM
246
+
247
+
248
+ Brief Hospital Course:
249
+ The patient was admitted to the hospital and brought to the
250
+ operating room for a cscheduled operation on ___ where the
251
+ patient underwent Coronary artery bypass grafting x3 Left
252
+ Internal Mammary Artery to Left anterior descending artery,
253
+ reverse saphenous vein graft to Obtuse marginal artery, and
254
+ reverse saphenous
255
+ vein graft to Posterior Descending Artery. The patient tolerated
256
+ the procedure well and post-operatively was transferred to the
257
+ CVICU in stable condition on Neosynephrin infusion for recovery
258
+ and invasive monitoring. Kefzol was used for surgical
259
+ antibiotic prophylaxis. The patient extubated and weaned off
260
+ pressor support on the day of surgery. POD 1 found the patient
261
+ extubated, alert and oriented and breathing comfortably. The
262
+ patient was neurologically intact and hemodynamically stable on
263
+ no vasopressor support. Beta blocker was initiated and the
264
+ patient was gently diuresed toward the preoperative weight. The
265
+ patient was transferred to the telemetry floor for further
266
+ recovery. All tubes lines and drains were discontinued without
267
+ complication. Once o the stepdown floor the patient worked with
268
+ nursing and was evaluated by the physical therapy service for
269
+ assistance with strength and mobility. By the time of discharge
270
+ on POD 5 the patient was ambulating with assistance, the wound
271
+ was healing and pain was controlled with dilaudid and tylenol.
272
+ The patient was discharged to ___
273
+ in good condition with appropriate follow up instructions.
274
+
275
+ Medications on Admission:
276
+ atorvastatin 10 mg tablet.
277
+ finasteride 5 mg tablet. 1 (One) Tablet(s) by mouth
278
+ lorazepam 0.5 mg tablet. 1 Tablet(s) by mouth at
279
+ bedtime as needed for as needed
280
+ metoprolol succinate ER 25 mg 1 tablet(s) by mouth once a day
281
+ nitroglycerin 0.4 mg sublingual tablet. 1 tablet(s) sublingually
282
+ once a day as needed
283
+ Rolaids as needed after ___ for heart burn -
284
+ Viagra 100 mg tablet. 1 Tablet(s) by mouth prn
285
+ Flomax 0.4 mg capsule. 1 Capsule(s) by mouth once a day -
286
+ (Prescribed by Other Provider)
287
+ triamcinolone acetonide 0.1 % topical cream. Apply to chest wall
288
+ twice a day
289
+
290
+ Medications - OTC
291
+ aspirin 81 mg tablet,delayed release. 1 Tablet(s) by mouth once
292
+ a
293
+ day
294
+ ibuprofen 200 mg capsule. capsule(s) by mouth as needed -
295
+
296
+
297
+ Discharge Medications:
298
+ 1. Acetaminophen 650 mg PO Q4H:PRN pain/fever
299
+ 2. Aspirin EC 81 mg PO DAILY
300
+ 3. Atorvastatin 40 mg PO DAILY
301
+ 4. Docusate Sodium 100 mg PO BID
302
+ 5. Metoprolol Tartrate 12.5 mg PO TID
303
+ 6. Tamsulosin 0.4 mg PO QHS
304
+ 7. Triamcinolone Acetonide 0.1% Ointment 1 Appl TP BID
305
+ 8. Amiodarone 200 mg PO BID
306
+ ___ BID x7 days then
307
+ 200mg daily
308
+ 9. Bisacodyl 10 mg PO DAILY
309
+ 10. Furosemide 20 mg PO DAILY Duration: 10 Days
310
+ 11. Ipratropium-Albuterol Inhalation Spray 1 INH IH Q6H:PRN
311
+ shortness of breath
312
+ 12. Lorazepam 0.5 mg PO QHS:PRN anxiety
313
+ RX *lorazepam 1 mg 0.5 (One half) tabs by mouth at bedtime Disp
314
+ #*30 Tablet Refills:*0
315
+ 13. Potassium Chloride 20 mEq PO DAILY Duration: 10 Days
316
+ 14. HYDROmorphone (Dilaudid) ___ mg PO Q4H:PRN pain
317
+ RX *hydromorphone 2 mg ___ tablet(s) by mouth every four (4)
318
+ hours Disp #*75 Tablet Refills:*0
319
+
320
+
321
+ Discharge Disposition:
322
+ Extended Care
323
+
324
+ Facility:
325
+ ___
326
+
327
+ Discharge Diagnosis:
328
+ Primary:
329
+ Coronary Artery disease s/pCABG x3(Lima-LAD,SVG-OM,SVG ___
330
+ Secondary:
331
+ Hypercholesterolemia
332
+ Hx tobacco use
333
+ Umbilical hernia,
334
+ BPH
335
+ Sleep Apnea
336
+
337
+
338
+ Discharge Condition:
339
+ Alert and oriented x3 nonfocal
340
+ Ambulating with assistance
341
+ Incisional pain managed with Dilaudid and tylenol
342
+ Incisions:
343
+ Sternal - healing well, no erythema or drainage
344
+ Leg Right- healing well, no erythema or drainage.
345
+ Edema- 2+ bilat pedal
346
+
347
+
348
+
349
+
350
+
351
+ Discharge Instructions:
352
+ Please shower daily including washing incisions gently with mild
353
+ soap, no baths or swimming until cleared by surgeon. Look at
354
+ your incisions daily for redness or drainage
355
+ Please NO lotions, cream, powder, or ointments to incisions
356
+ Each morning you should weigh yourself and then in the evening
357
+ take your temperature, these should be written down on the chart
358
+
359
+ No driving for one month or while taking narcotics. Driving will
360
+ be discussed at follow up appointment with surgeon-when you will
361
+ be able to drive
362
+ No lifting more than 10 pounds for 10 weeks
363
+
364
+ **Please call cardiac surgery office with any questions or
365
+ concerns ___. Answering service will contact on call
366
+ person during off hours**
367
+
368
+
369
+ Followup Instructions:
370
+ ___
371
+
372
+ [RADIOLOGY NOTE]
373
+ EXAMINATION: CHEST PORT. LINE PLACEMENT
374
+
375
+ INDICATION: ___ year old man s/p CABG // FAST TRACK EARLY EXTUBATION CARDIAC
376
+ SURGERY Contact name: ___: ___
377
+
378
+ TECHNIQUE: CHEST PORT. LINE PLACEMENT
379
+
380
+ COMPARISON: ___
381
+
382
+ IMPRESSION:
383
+
384
+ ET tube tip is 6 cm above the carinal. Left chest tube is in place.
385
+ Mediastinal drains are in place. Right internal jugular line tip is at the
386
+ level of lower SVC. Sternal wires are present. No pulmonary edema or
387
+ pneumothorax currently seen.
388
+
389
+ [RADIOLOGY NOTE]
390
+ EXAMINATION: CHEST (PORTABLE AP)
391
+
392
+ INDICATION: ___ year old man with cabg // r/o ptx, s/p ct d/c r/o ptx,
393
+ s/p ct d/c
394
+
395
+ IMPRESSION:
396
+
397
+ In comparison with the study of ___, all of the monitoring and support
398
+ devices have been removed. Specifically, no evidence of pneumothorax after
399
+ chest tube removal. And atelectatic changes with probable effusion at the left
400
+ base, with substantially less changes at the right base.
401
+
402
+ [RADIOLOGY NOTE]
403
+ EXAMINATION: CHEST (PA AND LAT)
404
+
405
+ INDICATION: ___ year old man s/p CABG // eval for effusions eval for
406
+ effusions
407
+
408
+ IMPRESSION:
409
+
410
+ IN COMPARISON WITH THE STUDY OF ___, THERE IS LITTLE CHANGE. ATELECTATIC
411
+ CHANGES ARE SEEN BILATERALLY, MORE PROMINENT ON THE LEFT, WITH SMALL
412
+ EFFUSIONS. NO VASCULAR CONGESTION OR ACUTE FOCAL PNEUMONIA.
summaries/subject_14497209_hadm_24931338_model_input.txt ADDED
@@ -0,0 +1,443 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ PRE-OPERATIVE SUMMARY INPUT (SINGLE ADMISSION):
2
+
3
+ PATIENT:
4
+ - Age: 62
5
+ - Gender: M
6
+
7
+ ADMISSION:
8
+ - Admission ID: 24931338
9
+ - Admission Type: SURGICAL SAME DAY ADMISSION
10
+ - Admission Location: PHYSICIAN REFERRAL
11
+ - Discharge Location: SKILLED NURSING FACILITY
12
+ - Insurance: Medicare
13
+ - Race: WHITE
14
+ - Marital Status: DIVORCED
15
+ - Language: ENGLISH
16
+
17
+ PROCEDURES (3 total):
18
+ 1. ICD-9: 3612
19
+ 2. ICD-9: 3615
20
+ 3. ICD-9: 3961
21
+
22
+ DIAGNOSES (15 total):
23
+ 1. ICD-9: 41401
24
+ 2. ICD-9: 4142
25
+ 3. ICD-9: 42731
26
+ 4. ICD-9: 2720
27
+ 5. ICD-9: 32723
28
+ 6. ICD-9: 4019
29
+ 7. ICD-9: 53081
30
+ 8. ICD-9: 60000
31
+ 9. ICD-9: 27800
32
+ 10. ICD-9: V8534
33
+ 11. ICD-9: 5531
34
+ 12. ICD-9: 30000
35
+ 13. ICD-9: V4987
36
+ 14. ICD-9: V5866
37
+ 15. ICD-9: V1582
38
+
39
+ LABORATORY RESULTS:
40
+ Total laboratory events: 235
41
+ Most frequent lab tests:
42
+ - Item ID 51221: 10 measurements
43
+ - Item ID 50820: 9 measurements
44
+ - Item ID 52033: 9 measurements
45
+ - Item ID 50902: 8 measurements
46
+ - Item ID 50912: 8 measurements
47
+
48
+ CLINICAL NOTES:
49
+ [DISCHARGE]
50
+ Name: ___ Unit No: ___
51
+
52
+ Admission Date: ___ Discharge Date: ___
53
+
54
+ Date of Birth: ___ Sex: M
55
+
56
+ Service: CARDIOTHORACIC
57
+
58
+ Allergies:
59
+ No Known Allergies / Adverse Drug Reactions
60
+
61
+ Attending: ___
62
+
63
+ Chief Complaint:
64
+ Chest pain
65
+
66
+ Major Surgical or Invasive Procedure:
67
+ s/p CABG x 3(Lima-LAD, SVG-Om, SVG PDA) ___
68
+
69
+
70
+ History of Present Illness:
71
+ ___ year old gentleman who, according to Dr ___ of
72
+ ___, had been prior heavy smoker, but quit in ___, also has
73
+ hypercholesterolemia,who has been getting an exertional chest
74
+ pain syndrome starting in ___. He began exercises. At times,
75
+ he gets some heaviness in his chest, especially if he increases
76
+ his speed or elevation in his treadmill. The pain would resolve
77
+ at rest. He never had any rest pain, no associated shortness of
78
+ breath, pain did not radiate, and no lightheadedness or
79
+ palpitations. A stress echo showed he exercised for 8 minutes
80
+ on ___ protocol, began getting chest discomfort, 5 minutes
81
+ on exercise ___, that increased to ___ at peak exercise. His
82
+ EKG showed changes for LVH and he did develop ST depressions
83
+ with exercise and echo evidence of some ischemia in his
84
+ anteroseptum
85
+ and distal anterior wall. Cardiac Surgery asked to see and
86
+ evaluate for CABG.
87
+
88
+
89
+ Past Medical History:
90
+ Past Medical History:
91
+ Hypercholesterolemia
92
+ Hx tobacco use
93
+ Umbilical hernia,
94
+ BPH
95
+ Sleep Apnea
96
+ Past Surgical History:
97
+ Laminectomy
98
+
99
+
100
+ Social History:
101
+ ___
102
+ Family History:
103
+ unremarkable
104
+
105
+ Physical Exam:
106
+ Admission Exam:
107
+ Pulse:63 Resp:16 O2 sat:97% B/P:133/76
108
+ Height: Weight:109kg
109
+ General:
110
+ Skin: Dry [x] intact [x]
111
+ HEENT: PERRLA [x] EOMI [x]
112
+ Neck: Supple [x] Full ROM [x]
113
+ Chest: Lungs clear bilaterally [x]
114
+ Heart: RRR [x] Irregular [] Murmur [] grade
115
+ Abdomen: Soft [x] non-distended [x] non-tender [x] +BS [x]
116
+ Extremities: Warm [x], well-perfused [x] Edema [] _____
117
+ Varicosities: None [x]
118
+ Neuro: Grossly intact [x]
119
+ Pulses:
120
+ Femoral Right:+2 Left:+2
121
+ DP Right:+2 Left:+2
122
+ ___ Right:+2 Left:+2
123
+ Radial Right:Cath site Left:+2
124
+ Carotid Bruit: None
125
+
126
+ Discharge Exam
127
+ VS: T 99.5 HR 76 SR BP 91/51 RR 18 O2sat 93% 1LNP
128
+ Wt 107.6 kg Pre-op 109 kg
129
+ Gen: NAD
130
+ Neuro: A&O x3, MAE, nonfocal exam
131
+ CV: RRR, no M/R/G. sternum stable, incision CDI
132
+ Pulm: Decreased bases bilat
133
+ Abdm: soft, NT, +BS
134
+ Ext: warm, well perfused, 2+ bilat pedal edema
135
+
136
+
137
+ Pertinent Results:
138
+ Admission Labs:
139
+ ___ 09:34AM HGB-15.6 calcHCT-47
140
+ ___ 09:34AM freeCa-1.20
141
+ ___ 09:34AM GLUCOSE-100 LACTATE-0.9 NA+-140 K+-4.3
142
+ CL--102
143
+ ___ 02:00PM ___ 02:00PM ___ PTT-30.0 ___
144
+ ___ 02:00PM PLT COUNT-102*
145
+ ___ 02:00PM WBC-17.1*# RBC-4.31* HGB-14.0 HCT-41.1 MCV-95
146
+ MCH-32.6* MCHC-34.1 RDW-13.3
147
+ ___ 03:13PM UREA N-17 CREAT-1.0 SODIUM-139 POTASSIUM-4.8
148
+ CHLORIDE-108 TOTAL CO2-24 ANION GAP-12
149
+
150
+ Discharge Labs:
151
+ ___ 07:00AM BLOOD WBC-8.7 RBC-2.82* Hgb-9.3* Hct-26.4*
152
+ MCV-94 MCH-33.1* MCHC-35.3* RDW-12.9 Plt ___
153
+ ___ 07:00AM BLOOD Plt ___
154
+ ___ 07:00AM BLOOD ___
155
+ ___ 07:00AM BLOOD Glucose-114* UreaN-26* Creat-1.0 Na-136
156
+ K-3.8 Cl-94* HCO3-31 AnGap-15
157
+ ___ 06:40AM BLOOD Glucose-107* UreaN-27* Creat-1.0 Na-136
158
+ K-3.9 Cl-96 HCO3-31 AnGap-13
159
+ ___ 07:00AM BLOOD Mg-2.5
160
+
161
+ TEE: ___
162
+ Findings
163
+ LEFT ATRIUM: No spontaneous echo contrast is seen in the ___.
164
+ RIGHT ATRIUM/INTERATRIAL SEPTUM: Normal interatrial septum.
165
+ LEFT VENTRICLE: Normal LV wall thickness, cavity size, and
166
+ global systolic function (LVEF>55%).
167
+ RIGHT VENTRICLE: Normal RV chamber size and free wall motion.
168
+ AORTA: Normal ascending, transverse and descending thoracic
169
+ aorta with no atherosclerotic plaque.
170
+ AORTIC VALVE: Normal aortic valve leaflets (3). No AS. No AR.
171
+ MITRAL VALVE: Normal mitral valve leaflets with trivial MR.
172
+ ___ VALVE: Normal tricuspid valve leaflets with trivial
173
+ TR.
174
+ PULMONIC VALVE/PULMONARY ARTERY: Physiologic (normal) PR.
175
+ PERICARDIUM: No pericardial effusion.
176
+ GENERAL COMMENTS: A TEE was performed in the location listed
177
+ above. I certify I was present in compliance with ___
178
+ regulations. The patient was under general anesthesia throughout
179
+ the procedure. No TEE related complications.
180
+ Conclusions
181
+ Pre-CPB:
182
+ No spontaneous echo contrast is seen in the left atrial
183
+ appendage. Left ventricular wall thickness, cavity size, and
184
+ global systolic function are normal (LVEF>55%). Right
185
+ ventricular chamber size and free wall motion are normal. The
186
+ ascending, transverse and descending thoracic aorta are normal
187
+ in diameter. The aortic valve leaflets (3) appear structurally
188
+ normal with good leaflet excursion and no aortic stenosis or
189
+ aortic regurgitation. The mitral valve appears structurally
190
+ normal with trivial mitral regurgitation. There is no
191
+ pericardial effusion.
192
+ Post-CPB:
193
+ The patient is paced, on no inotropes.
194
+ Unchanged biventricular systolic fxn.
195
+ No AI, no MR. ___ intact.
196
+
197
+ Radiology Report CHEST (PA & LAT) Study Date of ___ 9:21
198
+ ___
199
+ Final Report:
200
+ IN COMPARISON WITH THE STUDY OF ___, THERE IS LITTLE
201
+ CHANGE. ATELECTATIC CHANGES ARE SEEN BILATERALLY, MORE PROMINENT
202
+ ON THE LEFT, WITH SMALL EFFUSIONS. NO VASCULAR CONGESTION OR
203
+ ACUTE FOCAL PNEUMONIA.
204
+ ___, MD electronically signed on ___
205
+ 8:35 AM
206
+
207
+
208
+ Brief Hospital Course:
209
+ The patient was admitted to the hospital and brought to the
210
+ operating room for a cscheduled operation on ___ where the
211
+ patient underwent Coronary artery bypass grafting x3 Left
212
+ Internal Mammary Artery to Left anterior descending artery,
213
+ reverse saphenous vein graft to Obtuse marginal artery, and
214
+ reverse saphenous
215
+ vein graft to Posterior Descending Artery. The patient tolerated
216
+ the procedure well and post-operatively was transferred to the
217
+ CVICU in stable condition on Neosynephrin infusion for recovery
218
+ and invasive monitoring. Kefzol was used for surgical
219
+ antibiotic prophylaxis. The patient extubated and weaned off
220
+ pressor support on the day of surgery. POD 1 found the patient
221
+ extubated, alert and oriented and breathing comfortably. The
222
+ patient was neurologically intact and hemodynamically stable on
223
+ no vasopressor support. Beta blocker was initiated and the
224
+ patient was gently diuresed toward the preoperative weight. The
225
+ patient was transferred to the telemetry floor for further
226
+ recovery. All tubes lines and drains were discontinued without
227
+ complication. Once o the stepdown floor the patient worked with
228
+ nursing and was evaluated by the physical therapy service for
229
+ assistance with strength and mobility. By the time of discharge
230
+ on POD 5 the patient was ambulating with assistance, the wound
231
+ was healing and pain was controlled with dilaudid and tylenol.
232
+ The patient was discharged to ___
233
+ in good condition with appropriate follow up instructions.
234
+
235
+ Medications on Admission:
236
+ atorvastatin 10 mg tablet.
237
+ finasteride 5 mg tablet. 1 (One) Tablet(s) by mouth
238
+ lorazepam 0.5 mg tablet. 1 Tablet(s) by mouth at
239
+ bedtime as needed for as needed
240
+ metoprolol succinate ER 25 mg 1 tablet(s) by mouth once a day
241
+ nitroglycerin 0.4 mg sublingual tablet. 1 tablet(s) sublingually
242
+ once a day as needed
243
+ Rolaids as needed after ___ for heart burn -
244
+ Viagra 100 mg tablet. 1 Tablet(s) by mouth prn
245
+ Flomax 0.4 mg capsule. 1 Capsule(s) by mouth once a day -
246
+ (Prescribed by Other Provider)
247
+ triamcinolone acetonide 0.1 % topical cream. Apply to chest wall
248
+ twice a day
249
+
250
+ Medications - OTC
251
+ aspirin 81 mg tablet,delayed release. 1 Tablet(s) by mouth once
252
+ a
253
+ day
254
+ ibuprofen 200 mg capsule. capsule(s) by mouth as needed -
255
+
256
+
257
+ Discharge Medications:
258
+ 1. Acetaminophen 650 mg PO Q4H:PRN pain/fever
259
+ 2. Aspirin EC 81 mg PO DAILY
260
+ 3. Atorvastatin 40 mg PO DAILY
261
+ 4. Docusate Sodium 100 mg PO BID
262
+ 5. Metoprolol Tartrate 12.5 mg PO TID
263
+ 6. Tamsulosin 0.4 mg PO QHS
264
+ 7. Triamcinolone Acetonide 0.1% Ointment 1 Appl TP BID
265
+ 8. Amiodarone 200 mg PO BID
266
+ ___ BID x7 days then
267
+ 200mg daily
268
+ 9. Bisacodyl 10 mg PO DAILY
269
+ 10. Furosemide 20 mg PO DAILY Duration: 10 Days
270
+ 11. Ipratropium-Albuterol Inhalation Spray 1 INH IH Q6H:PRN
271
+ shortness of breath
272
+ 12. Lorazepam 0.5 mg PO QHS:PRN anxiety
273
+ RX *lorazepam 1 mg 0.5 (One half) tabs by mouth at bedtime Disp
274
+ #*30 Tablet Refills:*0
275
+ 13. Potassium Chloride 20 mEq PO DAILY Duration: 10 Days
276
+ 14. HYDROmorphone (Dilaudid) ___ mg PO Q4H:PRN pain
277
+ RX *hydromorphone 2 mg ___ tablet(s) by mouth every four (4)
278
+ hours Disp #*75 Tablet Refills:*0
279
+
280
+
281
+ Discharge Disposition:
282
+ Extended Care
283
+
284
+ Facility:
285
+ ___
286
+
287
+ Discharge Diagnosis:
288
+ Primary:
289
+ Coronary Artery disease s/pCABG x3(Lima-LAD,SVG-OM,SVG ___
290
+ Secondary:
291
+ Hypercholesterolemia
292
+ Hx tobacco use
293
+ Umbilical hernia,
294
+ BPH
295
+ Sleep Apnea
296
+
297
+
298
+ Discharge Condition:
299
+ Alert and oriented x3 nonfocal
300
+ Ambulating with assistance
301
+ Incisional pain managed with Dilaudid and tylenol
302
+ Incisions:
303
+ Sternal - healing well, no erythema or drainage
304
+ Leg Right- healing well, no erythema or drainage.
305
+ Edema- 2+ bilat pedal
306
+
307
+
308
+
309
+
310
+
311
+ Discharge Instructions:
312
+ Please shower daily including washing incisions gently with mild
313
+ soap, no baths or swimming until cleared by surgeon. Look at
314
+ your incisions daily for redness or drainage
315
+ Please NO lotions, cream, powder, or ointments to incisions
316
+ Each morning you should weigh yourself and then in the evening
317
+ take your temperature, these should be written down on the chart
318
+
319
+ No driving for one month or while taking narcotics. Driving will
320
+ be discussed at follow up appointment with surgeon-when you will
321
+ be able to drive
322
+ No lifting more than 10 pounds for 10 weeks
323
+
324
+ **Please call cardiac surgery office with any questions or
325
+ concerns ___. Answering service will contact on call
326
+ person during off hours**
327
+
328
+
329
+ Followup Instructions:
330
+ ___
331
+
332
+
333
+ [RADIOLOGY] EXAMINATION: CHEST PORT. LINE PLACEMENT
334
+
335
+ INDICATION: ___ year old man s/p CABG // FAST TRACK EARLY EXTUBATION CARDIAC
336
+ SURGERY Contact name: ___: ___
337
+
338
+ TECHNIQUE: CHEST PORT. LINE PLACEMENT
339
+
340
+ COMPARISON: ___
341
+
342
+ IMPRESSION:
343
+
344
+ ET tube tip is 6 cm above the carinal. Left chest tube is in place.
345
+ Mediastinal drains are in place. Right internal jugular line tip is at the
346
+ level of lower SVC. Sternal wires are present. No pulmonary edema or
347
+ pneumothorax currently seen.
348
+
349
+
350
+ [RADIOLOGY] EXAMINATION: CHEST (PORTABLE AP)
351
+
352
+ INDICATION: ___ year old man with cabg // r/o ptx, s/p ct d/c r/o ptx,
353
+ s/p ct d/c
354
+
355
+ IMPRESSION:
356
+
357
+ In comparison with the study of ___, all of the monitoring and support
358
+ devices have been removed. Specifically, no evidence of pneumothorax after
359
+ chest tube removal. And atelectatic changes with probable effusion at the left
360
+ base, with substantially less changes at the right base.
361
+
362
+
363
+ [RADIOLOGY] EXAMINATION: CHEST (PA AND LAT)
364
+
365
+ INDICATION: ___ year old man s/p CABG // eval for effusions eval for
366
+ effusions
367
+
368
+ IMPRESSION:
369
+
370
+ IN COMPARISON WITH THE STUDY OF ___, THERE IS LITTLE CHANGE. ATELECTATIC
371
+ CHANGES ARE SEEN BILATERALLY, MORE PROMINENT ON THE LEFT, WITH SMALL
372
+ EFFUSIONS. NO VASCULAR CONGESTION OR ACUTE FOCAL PNEUMONIA.
373
+
374
+ PROCEDURES (readable):
375
+ - 3612 (ICD-9) — (Aorto)coronary bypass of two coronary arteries
376
+ - 3615 (ICD-9) — Single internal mammary-coronary artery bypass
377
+ - 3961 (ICD-9) — Extracorporeal circulation auxiliary to open heart surgery
378
+
379
+ DIAGNOSES (readable):
380
+ - 41401 (ICD-9) — Coronary atherosclerosis of native coronary artery
381
+ - 4142 (ICD-9) — Chronic total occlusion of coronary artery
382
+ - 42731 (ICD-9) — Atrial fibrillation
383
+ - 2720 (ICD-9) — Pure hypercholesterolemia
384
+ - 32723 (ICD-9) — Obstructive sleep apnea (adult)(pediatric)
385
+ - 4019 (ICD-9) — Unspecified essential hypertension
386
+ - 53081 (ICD-9) — Esophageal reflux
387
+ - 60000 (ICD-9) — Hypertrophy (benign) of prostate without urinary obstruction and other lower urinary tract symptom (LUTS)
388
+ - 27800 (ICD-9) — Obesity, unspecified
389
+ - V8534 (ICD-9) — Body Mass Index 34.0-34.9, adult
390
+ - 5531 (ICD-9) — Umbilical hernia without mention of obstruction or gangrene
391
+ - 30000 (ICD-9) — Anxiety state, unspecified
392
+ - V4987 (ICD-9) — Physical restraints status
393
+ - V5866 (ICD-9) — Long-term (current) use of aspirin
394
+ - V1582 (ICD-9) — Personal history of tobacco use
395
+
396
+ LAB ITEMS (readable, deduped):
397
+ - Anion Gap (Item 50868)
398
+ - Base Excess (Item 50802)
399
+ - Basophils (Item 51146)
400
+ - Bicarbonate (Item 50882)
401
+ - Calcium, Total (Item 50893)
402
+ - Calculated Total CO2 (Item 50804)
403
+ - Chloride (Item 50902)
404
+ - Chloride, Whole Blood (Item 50806)
405
+ - Creatinine (Item 50912)
406
+ - Eosinophils (Item 51200)
407
+ - Estimated GFR (MDRD equation) (Item 50920)
408
+ - Fibrinogen, Functional (Item 51214)
409
+ - Free Calcium (Item 50808)
410
+ - Glucose (Item 50809)
411
+ - Glucose (Item 50931)
412
+ - Hematocrit (Item 51221)
413
+ - Hematocrit, Calculated (Item 50810)
414
+ - Hemoglobin (Item 50811)
415
+ - Hemoglobin (Item 51222)
416
+ - INR(PT) (Item 51237)
417
+ - Intubated (Item 50812)
418
+ - Lactate (Item 50813)
419
+ - Lymphocytes (Item 51244)
420
+ - MCH (Item 51248)
421
+ - MCHC (Item 51249)
422
+ - MCV (Item 51250)
423
+ - Magnesium (Item 50960)
424
+ - Monocytes (Item 51254)
425
+ - Neutrophils (Item 51256)
426
+ - PT (Item 51274)
427
+ - PTT (Item 51275)
428
+ - Phosphate (Item 50970)
429
+ - Platelet Count (Item 51265)
430
+ - Platelet Smear (Item 51266)
431
+ - Potassium (Item 50971)
432
+ - Potassium, Whole Blood (Item 50822)
433
+ - RDW (Item 51277)
434
+ - Red Blood Cells (Item 51279)
435
+ - Sodium (Item 50983)
436
+ - Sodium, Whole Blood (Item 50824)
437
+ - Specimen Type (Item 52033)
438
+ - Urea Nitrogen (Item 51006)
439
+ - Ventilator (Item 50828)
440
+ - White Blood Cells (Item 51301)
441
+ - pCO2 (Item 50818)
442
+ - pH (Item 50820)
443
+ - pO2 (Item 50821)
summaries/subject_14497209_hadm_24931338_summary.txt ADDED
@@ -0,0 +1,69 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ **PRE-OPERATIVE SUMMARY**
2
+
3
+ **Patient Information**
4
+
5
+ * Age: 62
6
+ * Gender: Male
7
+ * Admission ID: 24931338
8
+ * Admission Type: Surgical Same Day Admission
9
+ * Admission Location: Physician Referral
10
+ * Discharge Location: Skilled Nursing Facility
11
+ * Insurance: Medicare
12
+ * Race: White
13
+ * Marital Status: Divorced
14
+ * Language: English
15
+
16
+ **Diagnoses**
17
+
18
+ * ICD-9: 41401 - Coronary atherosclerosis of native coronary artery
19
+ * ICD-9: 4142 - Chronic total occlusion of coronary artery
20
+ * ICD-9: 42731 - Atrial fibrillation
21
+ * ICD-9: 2720 - Pure hypercholesterolemia
22
+ * ICD-9: 32723 - Obstructive sleep apnea (adult)(pediatric)
23
+ * ICD-9: 4019 - Unspecified essential hypertension
24
+ * ICD-9: 53081 - Esophageal reflux
25
+ * ICD-9: 60000 - Hypertrophy (benign) of prostate without urinary obstruction and other lower urinary tract symptom (LUTS)
26
+ * ICD-9: 27800 - Obesity, unspecified
27
+ * ICD-9: V8534 - Body Mass Index 34.0-34.9, adult
28
+ * ICD-9: 5531 - Umbilical hernia without mention of obstruction or gangrene
29
+ * ICD-9: 30000 - Anxiety state, unspecified
30
+ * ICD-9: V4987 - Physical restraints status
31
+ * ICD-9: V5866 - Long-term (current) use of aspirin
32
+ * ICD-9: V1582 - Personal history of tobacco use
33
+
34
+ **Procedures**
35
+
36
+ * ICD-9: 3612 - Aorto-coronary bypass of two coronary arteries
37
+ * ICD-9: 3615 - Single internal mammary-coronary artery bypass
38
+ * ICD-9: 3961 - Extracorporeal circulation auxiliary to open heart surgery
39
+
40
+ **Laboratory Results**
41
+
42
+ * Total laboratory events: 235
43
+ * Most frequent lab tests:
44
+ + Item ID 51221: 10 measurements
45
+ + Item ID 50820: 9 measurements
46
+ + Item ID 52033: 9 measurements
47
+ + Item ID 50902: 8 measurements
48
+ + Item ID 50912: 8 measurements
49
+
50
+ **Clinical Notes**
51
+
52
+ * The patient is a 62-year-old male with a history of coronary artery disease, atrial fibrillation, and hypercholesterolemia.
53
+ * He underwent coronary artery bypass grafting (CABG) with three grafts (Lima-LAD, SVG-Om, and SVG PDA).
54
+ * The patient has a history of tobacco use, obesity, and sleep apnea.
55
+ * He is currently on medications including atorvastatin, metoprolol succinate, nitroglycerin, and triamcinolone acetonide.
56
+ * The patient's vital signs are stable, with a pulse of 63, respiratory rate of 16, and oxygen saturation of 97%.
57
+ * The patient's physical examination is notable for a sternal incision with no erythema or drainage, and bilateral pedal edema.
58
+
59
+ **Medications**
60
+
61
+ * Atorvastatin 10 mg tablet
62
+ * Finasteride 5 mg tablet
63
+ * Lorazepam 0.5 mg tablet
64
+ * Metoprolol succinate ER 25 mg tablet
65
+ * Nitroglycerin 0.4 mg sublingual tablet
66
+ * Rolaids as needed for heartburn
67
+ * Viagra 100 mg tablet
68
+ * Flomax 0.4 mg capsule
69
+ * Triamcinolone acetonide 0.1% topical cream
summaries/subject_14497209_hadm_29918801_input.txt ADDED
@@ -0,0 +1,376 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ PRE-OPERATIVE SUMMARY INPUT (SINGLE ADMISSION):
2
+
3
+ PATIENT:
4
+ - Age: 62
5
+ - Gender: M
6
+
7
+ ADMISSION:
8
+ - Admission ID: 29918801
9
+ - Admission Type: URGENT
10
+ - Admission Location: TRANSFER FROM SKILLED NURSING FACILITY
11
+ - Discharge Location: SKILLED NURSING FACILITY
12
+ - Insurance: Medicare
13
+ - Race: WHITE
14
+ - Marital Status: DIVORCED
15
+ - Language: ENGLISH
16
+
17
+ PROCEDURES (3 total):
18
+ - 3479 (ICD-9)
19
+ - 7761 (ICD-9)
20
+ - 7851 (ICD-9)
21
+
22
+ DIAGNOSES (13 total):
23
+ - 99831 (ICD-9)
24
+ - 2720 (ICD-9)
25
+ - E8788 (ICD-9)
26
+ - E8497 (ICD-9)
27
+ - 41400 (ICD-9)
28
+ - V4581 (ICD-9)
29
+ - 27800 (ICD-9)
30
+ - V8532 (ICD-9)
31
+ - 60000 (ICD-9)
32
+ - 32723 (ICD-9)
33
+ - 5531 (ICD-9)
34
+ - V1582 (ICD-9)
35
+ - V5866 (ICD-9)
36
+
37
+ LABORATORY RESULTS:
38
+ - Item ID 50868: 6 measurements, 2158-08-30 06:55:00 to 2158-09-05 06:50:00
39
+ - Item ID 50882: 6 measurements, 2158-08-30 06:55:00 to 2158-09-05 06:50:00
40
+ - Item ID 50893: 5 measurements, 2158-08-30 06:55:00 to 2158-09-05 06:50:00
41
+ - Item ID 50902: 6 measurements, 2158-08-30 06:55:00 to 2158-09-05 06:50:00
42
+ - Item ID 50912: 6 measurements, 2158-08-30 06:55:00 to 2158-09-05 06:50:00
43
+ - Item ID 50931: 6 measurements, 2158-08-30 06:55:00 to 2158-09-05 06:50:00
44
+ - Item ID 50960: 6 measurements, 2158-08-30 06:55:00 to 2158-09-05 06:50:00
45
+ - Item ID 50970: 5 measurements, 2158-08-30 06:55:00 to 2158-09-05 06:50:00
46
+ - Item ID 50971: 6 measurements, 2158-08-30 06:55:00 to 2158-09-05 06:50:00
47
+ - Item ID 50983: 6 measurements, 2158-08-30 06:55:00 to 2158-09-05 06:50:00
48
+ - Item ID 51006: 6 measurements, 2158-08-30 06:55:00 to 2158-09-05 06:50:00
49
+ - Item ID 51221: 6 measurements, 2158-08-30 06:55:00 to 2158-09-05 06:50:00
50
+ - Item ID 51222: 6 measurements, 2158-08-30 06:55:00 to 2158-09-05 06:50:00
51
+ - Item ID 51237: 1 measurements, 2158-09-01 05:40:00 to 2158-09-01 05:40:00
52
+ - Item ID 51248: 6 measurements, 2158-08-30 06:55:00 to 2158-09-05 06:50:00
53
+ - Item ID 51249: 6 measurements, 2158-08-30 06:55:00 to 2158-09-05 06:50:00
54
+ - Item ID 51250: 6 measurements, 2158-08-30 06:55:00 to 2158-09-05 06:50:00
55
+ - Item ID 51265: 6 measurements, 2158-08-30 06:55:00 to 2158-09-05 06:50:00
56
+ - Item ID 51274: 1 measurements, 2158-09-01 05:40:00 to 2158-09-01 05:40:00
57
+ - Item ID 51277: 6 measurements, 2158-08-30 06:55:00 to 2158-09-05 06:50:00
58
+ - Item ID 51279: 6 measurements, 2158-08-30 06:55:00 to 2158-09-05 06:50:00
59
+ - Item ID 51301: 6 measurements, 2158-08-30 06:55:00 to 2158-09-05 06:50:00
60
+
61
+ CLINICAL NOTES:
62
+ [DISCHARGE NOTE]
63
+ Name: ___ Unit ___: ___
64
+
65
+ Admission Date: ___ Discharge Date: ___
66
+
67
+ Date of Birth: ___ Sex: M
68
+
69
+ Service: CARDIOTHORACIC
70
+
71
+ Allergies:
72
+ ___ Known Allergies / Adverse Drug Reactions
73
+
74
+ Attending: ___
75
+
76
+ Chief Complaint:
77
+ sternal drainage and EVH harvest site erythema
78
+
79
+
80
+ Major Surgical or Invasive Procedure:
81
+ ___ Sternal plating/Pec flap closure
82
+
83
+
84
+ History of Present Illness:
85
+ He had a cath on ___ which revealed 3 vessel CAD and he
86
+ underwent CABG x3(Lima-LAD,SVG-OM,SVG PDA)on ___. He did
87
+ well postoperatively and was discharged to rehab on ___. He
88
+ has been progressing well at rehab but has had a persistent
89
+ cough. It has been treated with Vantin for the past 6 days and
90
+ he was given Predinsone 40 mg yesterday. He presented to the ED
91
+ this AM
92
+ with a 2 day history of sternal drainage and swelling in his R
93
+ ___ where his saphenous vein was harvested. He had LENIs of his
94
+ RLE 2 days ago which were negative for DVT.
95
+
96
+ Past Medical History:
97
+ PMH:
98
+ Hypercholesterolemia
99
+ Hx tobacco use
100
+ Umbilical hernia,
101
+ BPH
102
+ Sleep Apnea
103
+ PSH:
104
+ Laminectomy
105
+
106
+
107
+ Social History:
108
+ ___
109
+ Family History:
110
+ unremarkable
111
+
112
+ Physical Exam:
113
+ Admission Physical Exam:
114
+ Pulse:64 Resp:18 O2 sat:99% on 2 liters NC
115
+ B/P: 109/58
116
+ Weight: 109 kg
117
+ Skin: Dry [x] intact [x]
118
+ HEENT: PERRLA [x] EOMI [x]
119
+ Neck: Supple [x] Full ROM [x]
120
+ Chest: Lungs clear bilaterally [x] chest: sternal incision
121
+ healing well but has serrous drainage at the lower sternal pole.
122
+
123
+ +mid sternal click
124
+ Heart: RRR [x] Irregular [] Murmur [] grade
125
+ Abdomen: Soft [x] non-distended [x] non-tender [x] +BS [x]
126
+ Extremities: Warm [x], well-perfused [x] Edema [x] _2+ pitting
127
+ edema of RLE ecchymosis in the R thigh
128
+ Varicosities: None [x]
129
+ Neuro: Grossly intact [x]
130
+ Pulses:
131
+ Femoral Right:+2 Left:+2
132
+ DP Right:+1 Left:+1
133
+ ___ Right:+1 Left:+1
134
+ Radial Right:+2 Left:+2
135
+ Carotid Bruit: None
136
+
137
+ Discharge Exam
138
+ VS: T 98.6 HR 64 BP 98/56 RR 18 O2sat 96% RA
139
+ Wt 100.2kg Preop Wt 109kg
140
+ Gen: ___ acute distress
141
+ Neuro: alert and oriented x3, non focal exam
142
+ CV: RRR, ___ M/R/G. Sternum stable, incision covered w/tegaderm,
143
+ JP drain x2 w/serosang drainage
144
+ Pulm: CTA ___ distress
145
+ Abdm: soft NT/ND/+BS
146
+ Ext: warm well perfused. 2+ R leg edema, trace L leg edema. ___
147
+ erythema at ___ site
148
+
149
+
150
+ Pertinent Results:
151
+ Admission Labs:
152
+ ___ 10:20AM ___ PTT-32.3 ___
153
+ ___ 10:20AM PLT COUNT-473*#
154
+ ___ 10:20AM NEUTS-83.5* LYMPHS-8.7* MONOS-4.1 EOS-3.4
155
+ BASOS-0.2
156
+ ___ 10:20AM WBC-10.7 RBC-3.28* HGB-10.2* HCT-31.1* MCV-95
157
+ MCH-31.0 MCHC-32.7 RDW-14.3
158
+ ___ 10:20AM GLUCOSE-125* UREA N-25* CREAT-1.2 SODIUM-141
159
+ POTASSIUM-4.0 CHLORIDE-100 TOTAL CO2-31 ANION GAP-14
160
+ ___ 10:27AM LACTATE-1.8
161
+ Discharge Labs:
162
+ ___ 06:50AM BLOOD WBC-7.5 RBC-3.24* Hgb-9.8* Hct-29.9*
163
+ MCV-92 MCH-30.2 MCHC-32.7 RDW-14.5 Plt ___
164
+ ___ 06:50AM BLOOD Plt ___
165
+ ___ 05:40AM BLOOD ___
166
+ ___ 06:50AM BLOOD Glucose-91 UreaN-16 Creat-0.8 Na-138
167
+ K-4.6 Cl-100 HCO3-30 AnGap-13
168
+
169
+ Wound Culture ___ 7:07 pm
170
+ SWAB MEDIALSTINAL.
171
+ GRAM STAIN (Final ___:
172
+ ___ POLYMORPHONUCLEAR LEUKOCYTES SEEN.
173
+ ___ MICROORGANISMS SEEN.
174
+ WOUND CULTURE (Final ___: ___ GROWTH.
175
+ ACID FAST SMEAR (Final ___:
176
+ ___ ACID FAST BACILLI SEEN ON DIRECT SMEAR.
177
+ ACID FAST CULTURE (Preliminary):
178
+ A swab is not the optimal specimen for recovery of
179
+ mycobacteria or
180
+ filamentous fungi. A negative result should be
181
+ interpreted with
182
+ caution. Whenever possible tissue biopsy or aspirated
183
+ fluid should
184
+ be submitted.
185
+ FUNGAL CULTURE (Preliminary):
186
+ ___ FUNGUS ISOLATED.
187
+ A swab is not the optimal specimen for recovery of
188
+ mycobacteria or
189
+ filamentous fungi. A negative result should be
190
+ interpreted with
191
+ caution. Whenever possible tissue biopsy or aspirated
192
+ fluid should
193
+ be submitted.
194
+ ANAEROBIC CULTURE (Preliminary): ___ GROWTH.
195
+
196
+ Radiology Report CHEST (PORTABLE AP) Study Date of ___
197
+ 4:01 ___
198
+ Final Report:
199
+ Intact mediastinal wires are seen. There gas projecting over the
200
+ sternum
201
+ vertically in the expected location of the operative site. This
202
+ has increased since the previous study. If there is high concern
203
+ for sternal dehiscence, would recommend dedicated chest CT.
204
+ Cardiomediastinal silhouette is within normal limits. There are
205
+ low lung volumes with atelectasis at the lung bases.
206
+ There are ___ pneumothoraces.
207
+ ___, MD electronically signed on SAT ___ 6:38 ___
208
+
209
+ Radiology Report CHEST (PA & LAT) Study Date of ___ 6:36
210
+ ___
211
+ Final Report:
212
+ Status post sternal plating. Drains and fixation material in
213
+ situ. The
214
+ lucency seen over the right upper abdomen continues to be
215
+ concerning for free intra-abdominal air. Bilateral areas of
216
+ atelectasis at the lung bases. Low lung volumes. Mild
217
+ cardiomegaly.
218
+ BY ELECTRONICALLY SIGNING THIS REPORT, I THE ATTENDING PHYSICIAN
219
+ ATTEST THAT ___ HAVE REVIEWED THE ABOVE IMAGES FOR THE ABOVE
220
+ EXAMINATION(S) AND AGREE WITH THE FINDINGS AS DOCUMENTED ABOVE.
221
+ ___, MD
222
+ ___, MD, PhD electronically signed on ___ ___ 8:29 AM
223
+
224
+
225
+
226
+ Brief Hospital Course:
227
+ Mr ___ was readmitted from rehabilitation with persistant cough
228
+ and sternal drainage as well as EVH site erythema/edema. The
229
+ patient was placed on antibiotics and his diuretics were
230
+ increased. He was observed for several days, he had ___ signs of
231
+ acute infection however his wound continued to drain and a
232
+ followup chest xray was concerning for sternal dehiscence.
233
+ Plastic surgery was consulted to assess wound and for potential
234
+ sternal wire removal and sternal plating. The following day he
235
+ was brought to the operating room by Dr ___ see
236
+ operative report for details, in summmary he had sternal
237
+ plating, zip ties and Bilateral pectoralis flaps. He tolerated
238
+ the operation well and was returned to the cardiac suregry
239
+ stepdown floor after a short stay in the recovery area. His
240
+ antibiotics were stoped because all cultures were negative.
241
+ The remainder of his hospital stay was uneventful. On POD3 he
242
+ was discharged to rehabilitation at ___. All
243
+ follow up appointments were scheduled with the exception of PCP
244
+ which should occur in ___ weeks.
245
+
246
+ Medications on Admission:
247
+ The Preadmission Medication list is accurate and complete.
248
+ 1. Acetaminophen 650 mg PO Q4H:PRN pain/fever
249
+ 2. Aspirin EC 81 mg PO DAILY
250
+ 3. Atorvastatin 40 mg PO DAILY
251
+ 4. Docusate Sodium 100 mg PO BID
252
+ 5. Metoprolol Tartrate 12.5 mg PO TID
253
+ 6. Tamsulosin 0.4 mg PO QHS
254
+ 7. Triamcinolone Acetonide 0.1% Ointment 1 Appl TP BID
255
+ 8. Amiodarone 200 mg PO BID
256
+ 9. Bisacodyl 10 mg PO DAILY
257
+ 10. Ipratropium-Albuterol Inhalation Spray 1 INH IH Q6H:PRN
258
+ shortness of breath
259
+ 11. Lorazepam 0.5 mg PO QHS:PRN anxiety
260
+ 12. HYDROmorphone (Dilaudid) ___ mg PO Q4H:PRN pain
261
+
262
+
263
+ Discharge Medications:
264
+ 1. Acetaminophen 650 mg PO Q4H:PRN pain/fever
265
+ 2. Amiodarone 200 mg PO BID
266
+ 3. Aspirin EC 81 mg PO DAILY
267
+ 4. Atorvastatin 40 mg PO DAILY
268
+ 5. Docusate Sodium 100 mg PO BID
269
+ 6. HYDROmorphone (Dilaudid) ___ mg PO Q4H:PRN pain
270
+ 7. Lorazepam 0.5 mg PO QHS:PRN anxiety
271
+ 8. Metoprolol Tartrate 12.5 mg PO TID
272
+ 9. Tamsulosin 0.4 mg PO QHS
273
+ 10. Triamcinolone Acetonide 0.1% Ointment 1 Appl TP BID
274
+ 11. Albuterol Inhaler 2 PUFF IH Q6H
275
+ 12. Finasteride 5 mg PO QHS
276
+ 13. Furosemide 40 mg PO DAILY Duration: 10 Days
277
+ 14. Potassium Chloride 20 mEq PO DAILY
278
+ 15. Tessalon Perles (benzonatate) 100 mg oral BID
279
+
280
+
281
+ Discharge Disposition:
282
+ Extended Care
283
+
284
+ Facility:
285
+ ___
286
+
287
+ Discharge Diagnosis:
288
+ Sternal Wound Dehiscence s/p sternal plate and Pec flap closure
289
+ PMH:
290
+ Coronary Artery disease s/pCABG x3(Lima-LAD,SVG-OM,SVG ___
291
+ Hypercholesterolemia
292
+ Hx tobacco use
293
+ Umbilical hernia,
294
+ BPH
295
+ Sleep Apnea
296
+
297
+
298
+ Discharge Condition:
299
+ incision: tegaderm intact - will be changed at follow up
300
+ appointment with Plasic surgery
301
+ JP's x2 draining serosang fluid
302
+
303
+
304
+ Discharge Instructions:
305
+ ___ shower until cleared by Plastic Surgery- do not change
306
+ dressing prior to follow-up appointment with Dr. ___ baths or swimming until cleared by surgeon. Look at your
307
+ incisions daily for redness or drainage
308
+ Please ___ lotions, cream, powder, or ointments to incisions
309
+ Each morning you should weigh yourself and then in the evening
310
+ take your temperature, these should be written down on the chart
311
+
312
+ ___ driving for one month or while taking narcotics. Driving will
313
+ be discussed at follow up appointment with surgeon-when you will
314
+ be able to drive
315
+ ___ lifting more than 10 pounds for 10 weeks
316
+
317
+ **Please call cardiac surgery office with any questions or
318
+ concerns ___. Answering service will contact on call
319
+ person during off hours**
320
+
321
+
322
+ Followup Instructions:
323
+ ___
324
+
325
+ [RADIOLOGY NOTE]
326
+ EXAMINATION: CHEST (PA AND LAT)
327
+
328
+ INDICATION: History: ___ status post recent CABG ___ now with persistent
329
+ cough and incisional drainage
330
+
331
+ TECHNIQUE: Chest PA and lateral
332
+
333
+ COMPARISON: ___
334
+
335
+ FINDINGS:
336
+
337
+ Patient status post median sternotomy and CABG. Heart size remains mild to
338
+ moderately enlarged. Mediastinal and hilar contours are relatively unchanged.
339
+ There is no pulmonary edema. Streaky opacities in the lung bases are
340
+ compatible with areas of atelectasis. Trace bilateral pleural effusions, right
341
+ greater than left, are minimally increased on the right. No pneumothorax is
342
+ identified. There are no acute osseous abnormalities.
343
+
344
+ IMPRESSION:
345
+
346
+ Bibasilar atelectasis and small bilateral pleural effusions, slightly
347
+ increased on the right.
348
+
349
+ [RADIOLOGY NOTE]
350
+ INDICATION: ___ year old man s/p CABG // eval for sternal wound dehisence
351
+
352
+ COMPARISON: Radiographs from ___.
353
+
354
+ IMPRESSION:
355
+
356
+ Intact mediastinal wires are seen. There gas projecting over the sternum
357
+ vertically in the expected location of the operative site. This has increased
358
+ since the previous study. If there is high concern for sternal dehiscence,
359
+ would recommend dedicated chest CT. Cardiomediastinal silhouette is within
360
+ normal limits. There are low lung volumes with atelectasis at the lung bases.
361
+ There are no pneumothoraces.
362
+
363
+ [RADIOLOGY NOTE]
364
+ EXAMINATION: CHEST (PA AND LAT)
365
+
366
+ INDICATION: ___ year old man with s/p sternal plating // eval for effusion or
367
+ infiltrates
368
+
369
+ COMPARISON: ___
370
+
371
+ IMPRESSION:
372
+
373
+ Status post sternal plating. Drains and fixation material in situ. The
374
+ lucency seen over the right upper abdomen continues to be concerning for free
375
+ intra-abdominal air. Bilateral areas of atelectasis at the lung bases. Low
376
+ lung volumes. Mild cardiomegaly.
summaries/subject_14497209_hadm_29918801_model_input.txt ADDED
@@ -0,0 +1,405 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ PRE-OPERATIVE SUMMARY INPUT (SINGLE ADMISSION):
2
+
3
+ PATIENT:
4
+ - Age: 62
5
+ - Gender: M
6
+
7
+ ADMISSION:
8
+ - Admission ID: 29918801
9
+ - Admission Type: URGENT
10
+ - Admission Location: TRANSFER FROM SKILLED NURSING FACILITY
11
+ - Discharge Location: SKILLED NURSING FACILITY
12
+ - Insurance: Medicare
13
+ - Race: WHITE
14
+ - Marital Status: DIVORCED
15
+ - Language: ENGLISH
16
+
17
+ PROCEDURES (3 total):
18
+ 1. ICD-9: 3479
19
+ 2. ICD-9: 7761
20
+ 3. ICD-9: 7851
21
+
22
+ DIAGNOSES (13 total):
23
+ 1. ICD-9: 99831
24
+ 2. ICD-9: 2720
25
+ 3. ICD-9: E8788
26
+ 4. ICD-9: E8497
27
+ 5. ICD-9: 41400
28
+ 6. ICD-9: V4581
29
+ 7. ICD-9: 27800
30
+ 8. ICD-9: V8532
31
+ 9. ICD-9: 60000
32
+ 10. ICD-9: 32723
33
+ 11. ICD-9: 5531
34
+ 12. ICD-9: V1582
35
+ 13. ICD-9: V5866
36
+
37
+ LABORATORY RESULTS:
38
+ Total laboratory events: 120
39
+ Most frequent lab tests:
40
+ - Item ID 51221: 6 measurements
41
+ - Item ID 51222: 6 measurements
42
+ - Item ID 51248: 6 measurements
43
+ - Item ID 51249: 6 measurements
44
+ - Item ID 51250: 6 measurements
45
+
46
+ CLINICAL NOTES:
47
+ [DISCHARGE]
48
+ Name: ___ Unit ___: ___
49
+
50
+ Admission Date: ___ Discharge Date: ___
51
+
52
+ Date of Birth: ___ Sex: M
53
+
54
+ Service: CARDIOTHORACIC
55
+
56
+ Allergies:
57
+ ___ Known Allergies / Adverse Drug Reactions
58
+
59
+ Attending: ___
60
+
61
+ Chief Complaint:
62
+ sternal drainage and EVH harvest site erythema
63
+
64
+
65
+ Major Surgical or Invasive Procedure:
66
+ ___ Sternal plating/Pec flap closure
67
+
68
+
69
+ History of Present Illness:
70
+ He had a cath on ___ which revealed 3 vessel CAD and he
71
+ underwent CABG x3(Lima-LAD,SVG-OM,SVG PDA)on ___. He did
72
+ well postoperatively and was discharged to rehab on ___. He
73
+ has been progressing well at rehab but has had a persistent
74
+ cough. It has been treated with Vantin for the past 6 days and
75
+ he was given Predinsone 40 mg yesterday. He presented to the ED
76
+ this AM
77
+ with a 2 day history of sternal drainage and swelling in his R
78
+ ___ where his saphenous vein was harvested. He had LENIs of his
79
+ RLE 2 days ago which were negative for DVT.
80
+
81
+ Past Medical History:
82
+ PMH:
83
+ Hypercholesterolemia
84
+ Hx tobacco use
85
+ Umbilical hernia,
86
+ BPH
87
+ Sleep Apnea
88
+ PSH:
89
+ Laminectomy
90
+
91
+
92
+ Social History:
93
+ ___
94
+ Family History:
95
+ unremarkable
96
+
97
+ Physical Exam:
98
+ Admission Physical Exam:
99
+ Pulse:64 Resp:18 O2 sat:99% on 2 liters NC
100
+ B/P: 109/58
101
+ Weight: 109 kg
102
+ Skin: Dry [x] intact [x]
103
+ HEENT: PERRLA [x] EOMI [x]
104
+ Neck: Supple [x] Full ROM [x]
105
+ Chest: Lungs clear bilaterally [x] chest: sternal incision
106
+ healing well but has serrous drainage at the lower sternal pole.
107
+
108
+ +mid sternal click
109
+ Heart: RRR [x] Irregular [] Murmur [] grade
110
+ Abdomen: Soft [x] non-distended [x] non-tender [x] +BS [x]
111
+ Extremities: Warm [x], well-perfused [x] Edema [x] _2+ pitting
112
+ edema of RLE ecchymosis in the R thigh
113
+ Varicosities: None [x]
114
+ Neuro: Grossly intact [x]
115
+ Pulses:
116
+ Femoral Right:+2 Left:+2
117
+ DP Right:+1 Left:+1
118
+ ___ Right:+1 Left:+1
119
+ Radial Right:+2 Left:+2
120
+ Carotid Bruit: None
121
+
122
+ Discharge Exam
123
+ VS: T 98.6 HR 64 BP 98/56 RR 18 O2sat 96% RA
124
+ Wt 100.2kg Preop Wt 109kg
125
+ Gen: ___ acute distress
126
+ Neuro: alert and oriented x3, non focal exam
127
+ CV: RRR, ___ M/R/G. Sternum stable, incision covered w/tegaderm,
128
+ JP drain x2 w/serosang drainage
129
+ Pulm: CTA ___ distress
130
+ Abdm: soft NT/ND/+BS
131
+ Ext: warm well perfused. 2+ R leg edema, trace L leg edema. ___
132
+ erythema at ___ site
133
+
134
+
135
+ Pertinent Results:
136
+ Admission Labs:
137
+ ___ 10:20AM ___ PTT-32.3 ___
138
+ ___ 10:20AM PLT COUNT-473*#
139
+ ___ 10:20AM NEUTS-83.5* LYMPHS-8.7* MONOS-4.1 EOS-3.4
140
+ BASOS-0.2
141
+ ___ 10:20AM WBC-10.7 RBC-3.28* HGB-10.2* HCT-31.1* MCV-95
142
+ MCH-31.0 MCHC-32.7 RDW-14.3
143
+ ___ 10:20AM GLUCOSE-125* UREA N-25* CREAT-1.2 SODIUM-141
144
+ POTASSIUM-4.0 CHLORIDE-100 TOTAL CO2-31 ANION GAP-14
145
+ ___ 10:27AM LACTATE-1.8
146
+ Discharge Labs:
147
+ ___ 06:50AM BLOOD WBC-7.5 RBC-3.24* Hgb-9.8* Hct-29.9*
148
+ MCV-92 MCH-30.2 MCHC-32.7 RDW-14.5 Plt ___
149
+ ___ 06:50AM BLOOD Plt ___
150
+ ___ 05:40AM BLOOD ___
151
+ ___ 06:50AM BLOOD Glucose-91 UreaN-16 Creat-0.8 Na-138
152
+ K-4.6 Cl-100 HCO3-30 AnGap-13
153
+
154
+ Wound Culture ___ 7:07 pm
155
+ SWAB MEDIALSTINAL.
156
+ GRAM STAIN (Final ___:
157
+ ___ POLYMORPHONUCLEAR LEUKOCYTES SEEN.
158
+ ___ MICROORGANISMS SEEN.
159
+ WOUND CULTURE (Final ___: ___ GROWTH.
160
+ ACID FAST SMEAR (Final ___:
161
+ ___ ACID FAST BACILLI SEEN ON DIRECT SMEAR.
162
+ ACID FAST CULTURE (Preliminary):
163
+ A swab is not the optimal specimen for recovery of
164
+ mycobacteria or
165
+ filamentous fungi. A negative result should be
166
+ interpreted with
167
+ caution. Whenever possible tissue biopsy or aspirated
168
+ fluid should
169
+ be submitted.
170
+ FUNGAL CULTURE (Preliminary):
171
+ ___ FUNGUS ISOLATED.
172
+ A swab is not the optimal specimen for recovery of
173
+ mycobacteria or
174
+ filamentous fungi. A negative result should be
175
+ interpreted with
176
+ caution. Whenever possible tissue biopsy or aspirated
177
+ fluid should
178
+ be submitted.
179
+ ANAEROBIC CULTURE (Preliminary): ___ GROWTH.
180
+
181
+ Radiology Report CHEST (PORTABLE AP) Study Date of ___
182
+ 4:01 ___
183
+ Final Report:
184
+ Intact mediastinal wires are seen. There gas projecting over the
185
+ sternum
186
+ vertically in the expected location of the operative site. This
187
+ has increased since the previous study. If there is high concern
188
+ for sternal dehiscence, would recommend dedicated chest CT.
189
+ Cardiomediastinal silhouette is within normal limits. There are
190
+ low lung volumes with atelectasis at the lung bases.
191
+ There are ___ pneumothoraces.
192
+ ___, MD electronically signed on SAT ___ 6:38 ___
193
+
194
+ Radiology Report CHEST (PA & LAT) Study Date of ___ 6:36
195
+ ___
196
+ Final Report:
197
+ Status post sternal plating. Drains and fixation material in
198
+ situ. The
199
+ lucency seen over the right upper abdomen continues to be
200
+ concerning for free intra-abdominal air. Bilateral areas of
201
+ atelectasis at the lung bases. Low lung volumes. Mild
202
+ cardiomegaly.
203
+ BY ELECTRONICALLY SIGNING THIS REPORT, I THE ATTENDING PHYSICIAN
204
+ ATTEST THAT ___ HAVE REVIEWED THE ABOVE IMAGES FOR THE ABOVE
205
+ EXAMINATION(S) AND AGREE WITH THE FINDINGS AS DOCUMENTED ABOVE.
206
+ ___, MD
207
+ ___, MD, PhD electronically signed on ___ ___ 8:29 AM
208
+
209
+
210
+
211
+ Brief Hospital Course:
212
+ Mr ___ was readmitted from rehabilitation with persistant cough
213
+ and sternal drainage as well as EVH site erythema/edema. The
214
+ patient was placed on antibiotics and his diuretics were
215
+ increased. He was observed for several days, he had ___ signs of
216
+ acute infection however his wound continued to drain and a
217
+ followup chest xray was concerning for sternal dehiscence.
218
+ Plastic surgery was consulted to assess wound and for potential
219
+ sternal wire removal and sternal plating. The following day he
220
+ was brought to the operating room by Dr ___ see
221
+ operative report for details, in summmary he had sternal
222
+ plating, zip ties and Bilateral pectoralis flaps. He tolerated
223
+ the operation well and was returned to the cardiac suregry
224
+ stepdown floor after a short stay in the recovery area. His
225
+ antibiotics were stoped because all cultures were negative.
226
+ The remainder of his hospital stay was uneventful. On POD3 he
227
+ was discharged to rehabilitation at ___. All
228
+ follow up appointments were scheduled with the exception of PCP
229
+ which should occur in ___ weeks.
230
+
231
+ Medications on Admission:
232
+ The Preadmission Medication list is accurate and complete.
233
+ 1. Acetaminophen 650 mg PO Q4H:PRN pain/fever
234
+ 2. Aspirin EC 81 mg PO DAILY
235
+ 3. Atorvastatin 40 mg PO DAILY
236
+ 4. Docusate Sodium 100 mg PO BID
237
+ 5. Metoprolol Tartrate 12.5 mg PO TID
238
+ 6. Tamsulosin 0.4 mg PO QHS
239
+ 7. Triamcinolone Acetonide 0.1% Ointment 1 Appl TP BID
240
+ 8. Amiodarone 200 mg PO BID
241
+ 9. Bisacodyl 10 mg PO DAILY
242
+ 10. Ipratropium-Albuterol Inhalation Spray 1 INH IH Q6H:PRN
243
+ shortness of breath
244
+ 11. Lorazepam 0.5 mg PO QHS:PRN anxiety
245
+ 12. HYDROmorphone (Dilaudid) ___ mg PO Q4H:PRN pain
246
+
247
+
248
+ Discharge Medications:
249
+ 1. Acetaminophen 650 mg PO Q4H:PRN pain/fever
250
+ 2. Amiodarone 200 mg PO BID
251
+ 3. Aspirin EC 81 mg PO DAILY
252
+ 4. Atorvastatin 40 mg PO DAILY
253
+ 5. Docusate Sodium 100 mg PO BID
254
+ 6. HYDROmorphone (Dilaudid) ___ mg PO Q4H:PRN pain
255
+ 7. Lorazepam 0.5 mg PO QHS:PRN anxiety
256
+ 8. Metoprolol Tartrate 12.5 mg PO TID
257
+ 9. Tamsulosin 0.4 mg PO QHS
258
+ 10. Triamcinolone Acetonide 0.1% Ointment 1 Appl TP BID
259
+ 11. Albuterol Inhaler 2 PUFF IH Q6H
260
+ 12. Finasteride 5 mg PO QHS
261
+ 13. Furosemide 40 mg PO DAILY Duration: 10 Days
262
+ 14. Potassium Chloride 20 mEq PO DAILY
263
+ 15. Tessalon Perles (benzonatate) 100 mg oral BID
264
+
265
+
266
+ Discharge Disposition:
267
+ Extended Care
268
+
269
+ Facility:
270
+ ___
271
+
272
+ Discharge Diagnosis:
273
+ Sternal Wound Dehiscence s/p sternal plate and Pec flap closure
274
+ PMH:
275
+ Coronary Artery disease s/pCABG x3(Lima-LAD,SVG-OM,SVG ___
276
+ Hypercholesterolemia
277
+ Hx tobacco use
278
+ Umbilical hernia,
279
+ BPH
280
+ Sleep Apnea
281
+
282
+
283
+ Discharge Condition:
284
+ incision: tegaderm intact - will be changed at follow up
285
+ appointment with Plasic surgery
286
+ JP's x2 draining serosang fluid
287
+
288
+
289
+ Discharge Instructions:
290
+ ___ shower until cleared by Plastic Surgery- do not change
291
+ dressing prior to follow-up appointment with Dr. ___ baths or swimming until cleared by surgeon. Look at your
292
+ incisions daily for redness or drainage
293
+ Please ___ lotions, cream, powder, or ointments to incisions
294
+ Each morning you should weigh yourself and then in the evening
295
+ take your temperature, these should be written down on the chart
296
+
297
+ ___ driving for one month or while taking narcotics. Driving will
298
+ be discussed at follow up appointment with surgeon-when you will
299
+ be able to drive
300
+ ___ lifting more than 10 pounds for 10 weeks
301
+
302
+ **Please call cardiac surgery office with any questions or
303
+ concerns ___. Answering service will contact on call
304
+ person during off hours**
305
+
306
+
307
+ Followup Instructions:
308
+ ___
309
+
310
+
311
+ [RADIOLOGY] EXAMINATION: CHEST (PA AND LAT)
312
+
313
+ INDICATION: History: ___ status post recent CABG ___ now with persistent
314
+ cough and incisional drainage
315
+
316
+ TECHNIQUE: Chest PA and lateral
317
+
318
+ COMPARISON: ___
319
+
320
+ FINDINGS:
321
+
322
+ Patient status post median sternotomy and CABG. Heart size remains mild to
323
+ moderately enlarged. Mediastinal and hilar contours are relatively unchanged.
324
+ There is no pulmonary edema. Streaky opacities in the lung bases are
325
+ compatible with areas of atelectasis. Trace bilateral pleural effusions, right
326
+ greater than left, are minimally increased on the right. No pneumothorax is
327
+ identified. There are no acute osseous abnormalities.
328
+
329
+ IMPRESSION:
330
+
331
+ Bibasilar atelectasis and small bilateral pleural effusions, slightly
332
+ increased on the right.
333
+
334
+
335
+ [RADIOLOGY] INDICATION: ___ year old man s/p CABG // eval for sternal wound dehisence
336
+
337
+ COMPARISON: Radiographs from ___.
338
+
339
+ IMPRESSION:
340
+
341
+ Intact mediastinal wires are seen. There gas projecting over the sternum
342
+ vertically in the expected location of the operative site. This has increased
343
+ since the previous study. If there is high concern for sternal dehiscence,
344
+ would recommend dedicated chest CT. Cardiomediastinal silhouette is within
345
+ normal limits. There are low lung volumes with atelectasis at the lung bases.
346
+ There are no pneumothoraces.
347
+
348
+
349
+ [RADIOLOGY] EXAMINATION: CHEST (PA AND LAT)
350
+
351
+ INDICATION: ___ year old man with s/p sternal plating // eval for effusion or
352
+ infiltrates
353
+
354
+ COMPARISON: ___
355
+
356
+ IMPRESSION:
357
+
358
+ Status post sternal plating. Drains and fixation material in situ. The
359
+ lucency seen over the right upper abdomen continues to be concerning for free
360
+ intra-abdominal air. Bilateral areas of atelectasis at the lung bases. Low
361
+ lung volumes. Mild cardiomegaly.
362
+
363
+ PROCEDURES (readable):
364
+ - 3479 (ICD-9) — Other repair of chest wall
365
+ - 7761 (ICD-9) — Local excision of lesion or tissue of bone, scapula, clavicle, and thorax [ribs and sternum]
366
+ - 7851 (ICD-9) — Internal fixation of bone without fracture reduction, scapula, clavicle, and thorax [ribs and sternum]
367
+
368
+ DIAGNOSES (readable):
369
+ - 99831 (ICD-9) — Disruption of internal operation (surgical) wound
370
+ - 2720 (ICD-9) — Pure hypercholesterolemia
371
+ - E8788 (ICD-9) — Other specified surgical operations and procedures causing abnormal patient reaction, or later complication, without mention of misadventure at time of operation
372
+ - E8497 (ICD-9) — Accidents occurring in residential institution
373
+ - 41400 (ICD-9) — Coronary atherosclerosis of unspecified type of vessel, native or graft
374
+ - V4581 (ICD-9) — Aortocoronary bypass status
375
+ - 27800 (ICD-9) — Obesity, unspecified
376
+ - V8532 (ICD-9) — Body Mass Index 32.0-32.9, adult
377
+ - 60000 (ICD-9) — Hypertrophy (benign) of prostate without urinary obstruction and other lower urinary tract symptom (LUTS)
378
+ - 32723 (ICD-9) — Obstructive sleep apnea (adult)(pediatric)
379
+ - 5531 (ICD-9) — Umbilical hernia without mention of obstruction or gangrene
380
+ - V1582 (ICD-9) — Personal history of tobacco use
381
+ - V5866 (ICD-9) — Long-term (current) use of aspirin
382
+
383
+ LAB ITEMS (readable, deduped):
384
+ - Anion Gap (Item 50868)
385
+ - Bicarbonate (Item 50882)
386
+ - Calcium, Total (Item 50893)
387
+ - Chloride (Item 50902)
388
+ - Creatinine (Item 50912)
389
+ - Glucose (Item 50931)
390
+ - Hematocrit (Item 51221)
391
+ - Hemoglobin (Item 51222)
392
+ - INR(PT) (Item 51237)
393
+ - MCH (Item 51248)
394
+ - MCHC (Item 51249)
395
+ - MCV (Item 51250)
396
+ - Magnesium (Item 50960)
397
+ - PT (Item 51274)
398
+ - Phosphate (Item 50970)
399
+ - Platelet Count (Item 51265)
400
+ - Potassium (Item 50971)
401
+ - RDW (Item 51277)
402
+ - Red Blood Cells (Item 51279)
403
+ - Sodium (Item 50983)
404
+ - Urea Nitrogen (Item 51006)
405
+ - White Blood Cells (Item 51301)
summaries/subject_14497209_hadm_29918801_summary.txt ADDED
@@ -0,0 +1,68 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ **PRE-OPERATIVE SUMMARY INPUT (SINGLE ADMISSION)**
2
+
3
+ **Patient Information:**
4
+
5
+ * Age: 62
6
+ * Gender: Male
7
+ * Admission ID: 29918801
8
+ * Admission Type: Urgent
9
+ * Admission Location: Transfer from Skilled Nursing Facility
10
+ * Discharge Location: Skilled Nursing Facility
11
+ * Insurance: Medicare
12
+ * Race: White
13
+ * Marital Status: Divorced
14
+ * Language: English
15
+
16
+ **Procedure Information:**
17
+
18
+ * 3 procedures performed:
19
+ 1. ICD-9: 3479 - Other repair of chest wall
20
+ 2. ICD-9: 7761 - Local excision of lesion or tissue of bone, scapula, clavicle, and thorax (ribs and sternum)
21
+ 3. ICD-9: 7851 - Internal fixation of bone without fracture reduction, scapula, clavicle, and thorax (ribs and sternum)
22
+
23
+ **Diagnosis Information:**
24
+
25
+ * 13 diagnoses:
26
+ 1. ICD-9: 99831 - Disruption of internal operation (surgical) wound
27
+ 2. ICD-9: 2720 - Pure hypercholesterolemia
28
+ 3. ICD-9: E8788 - Other specified surgical operations and procedures causing abnormal patient reaction, or later complication, without mention of misadventure at time of operation
29
+ 4. ICD-9: E8497 - Accidents occurring in residential institution
30
+ 5. ICD-9: 41400 - Coronary atherosclerosis of unspecified type of vessel, native or graft
31
+ 6. ICD-9: V4581 - Aortocoronary bypass status
32
+ 7. ICD-9: 27800 - Obesity, unspecified
33
+ 8. ICD-9: V8532 - Body Mass Index 32.0-32.9, adult
34
+ 9. ICD-9: 60000 - Hypertrophy (benign) of prostate without urinary obstruction and other lower urinary tract symptom (LUTS)
35
+ 10. ICD-9: 32723 - Obstructive sleep apnea (adult)(pediatric)
36
+ 11. ICD-9: 5531 - Umbilical hernia without mention of obstruction or gangrene
37
+ 12. ICD-9: V1582 - Personal history of tobacco use
38
+ 13. ICD-9: V5866 - Long-term (current) use of aspirin
39
+
40
+ **Laboratory Results:**
41
+
42
+ * 120 laboratory events
43
+ * Most frequent lab tests:
44
+ + Item ID 51221: 6 measurements
45
+ + Item ID 51222: 6 measurements
46
+ + Item ID 51248: 6 measurements
47
+ + Item ID 51249: 6 measurements
48
+ + Item ID 51250: 6 measurements
49
+
50
+ **Clinical Notes:**
51
+
52
+ * The patient was readmitted from rehabilitation with persistent cough and sternal drainage as well as EVH site erythema/edema.
53
+ * The patient underwent sternal plating, zip ties, and bilateral pectoralis flaps.
54
+ * The patient's antibiotics were stopped because all cultures were negative.
55
+ * The patient's discharge instructions include:
56
+ + Showering until cleared by Plastic Surgery
57
+ + Not changing the dressing prior to follow-up appointment with Dr. ___
58
+ + Bathing or swimming until cleared by surgeon
59
+ + Weighing himself and taking his temperature daily
60
+ + Lifting more than 10 pounds for 10 weeks
61
+ + Driving for one month or while taking narcotics
62
+ + Calling the cardiac surgery office with any questions or concerns
63
+
64
+ **Radiology Reports:**
65
+
66
+ * Chest (PA and LAT) study:
67
+ + Intact mediastinal wires are seen.
68
+ + There is gas projecting over the sternum vertically in
summaries/subject_14899292_hadm_24095441_input.txt ADDED
@@ -0,0 +1,373 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ PRE-OPERATIVE SUMMARY INPUT (SINGLE ADMISSION):
2
+
3
+ PATIENT:
4
+ - Age: 57
5
+ - Gender: M
6
+
7
+ ADMISSION:
8
+ - Admission ID: 24095441
9
+ - Admission Type: EW EMER.
10
+ - Admission Location: EMERGENCY ROOM
11
+ - Discharge Location: HOME HEALTH CARE
12
+ - Insurance: Other
13
+ - Race: WHITE
14
+ - Marital Status: SINGLE
15
+ - Language: ENGLISH
16
+
17
+ PROCEDURES (1 total):
18
+ - 8605 (ICD-9)
19
+
20
+ DIAGNOSES (2 total):
21
+ - 6822 (ICD-9)
22
+ - V600 (ICD-9)
23
+
24
+ LABORATORY RESULTS:
25
+ - Item ID 50868: 1 measurements, 2150-06-15 05:20:00 to 2150-06-15 05:20:00
26
+ - Item ID 50882: 1 measurements, 2150-06-15 05:20:00 to 2150-06-15 05:20:00
27
+ - Item ID 50893: 1 measurements, 2150-06-15 05:20:00 to 2150-06-15 05:20:00
28
+ - Item ID 50902: 2 measurements, 2150-06-15 05:20:00 to 2150-06-16 05:15:00
29
+ - Item ID 50910: 4 measurements, 2150-06-13 21:06:00 to 2150-06-15 10:00:00
30
+ - Item ID 50911: 4 measurements, 2150-06-13 21:06:00 to 2150-06-15 10:00:00
31
+ - Item ID 50912: 2 measurements, 2150-06-15 05:20:00 to 2150-06-16 05:15:00
32
+ - Item ID 50931: 2 measurements, 2150-06-15 05:20:00 to 2150-06-16 05:15:00
33
+ - Item ID 50960: 1 measurements, 2150-06-15 05:20:00 to 2150-06-15 05:20:00
34
+ - Item ID 50970: 1 measurements, 2150-06-15 05:20:00 to 2150-06-15 05:20:00
35
+ - Item ID 50971: 2 measurements, 2150-06-15 05:20:00 to 2150-06-16 05:15:00
36
+ - Item ID 50983: 2 measurements, 2150-06-15 05:20:00 to 2150-06-16 05:15:00
37
+ - Item ID 51003: 4 measurements, 2150-06-13 21:06:00 to 2150-06-15 10:00:00
38
+ - Item ID 51006: 2 measurements, 2150-06-15 05:20:00 to 2150-06-16 05:15:00
39
+ - Item ID 51009: 1 measurements, 2150-06-16 05:15:00 to 2150-06-16 05:15:00
40
+ - Item ID 51221: 2 measurements, 2150-06-15 05:20:00 to 2150-06-16 05:15:00
41
+ - Item ID 51222: 2 measurements, 2150-06-15 05:20:00 to 2150-06-16 05:15:00
42
+ - Item ID 51248: 2 measurements, 2150-06-15 05:20:00 to 2150-06-16 05:15:00
43
+ - Item ID 51249: 2 measurements, 2150-06-15 05:20:00 to 2150-06-16 05:15:00
44
+ - Item ID 51250: 2 measurements, 2150-06-15 05:20:00 to 2150-06-16 05:15:00
45
+ - Item ID 51265: 2 measurements, 2150-06-15 05:20:00 to 2150-06-16 05:15:00
46
+ - Item ID 51277: 2 measurements, 2150-06-15 05:20:00 to 2150-06-16 05:15:00
47
+ - Item ID 51279: 2 measurements, 2150-06-15 05:20:00 to 2150-06-16 05:15:00
48
+ - Item ID 51301: 2 measurements, 2150-06-15 05:20:00 to 2150-06-16 05:15:00
49
+
50
+ CLINICAL NOTES:
51
+ [DISCHARGE NOTE]
52
+ Name: ___ Unit No: ___
53
+
54
+ Admission Date: ___ Discharge Date: ___
55
+
56
+ Date of Birth: ___ Sex: M
57
+
58
+ Service: SURGERY
59
+
60
+ Allergies:
61
+ Clindamycin
62
+
63
+ Attending: ___.
64
+
65
+ Chief Complaint:
66
+ pain flap site
67
+
68
+ Major Surgical or Invasive Procedure:
69
+ ___ I&D of chest wall, removal of foreign body
70
+
71
+
72
+ History of Present Illness:
73
+ ___ is a ___ year old man with hx of chronic L chest wall
74
+ infection s/p debridement on ___ by Dr. ___ ___ closure
75
+ on
76
+ ___ by Dr. ___ plastic surgery. He presents to ED today
77
+ from ___ clinic c/o ___ wk hx of worsening erythema and pain over
78
+ his past flap site and a fluctuant mass that has developed
79
+ superior to his prior site of infections. Of note, he was
80
+ hospitalized from ___ for cellulitis and completed a 2 wk
81
+ course of IV vancomycin and has been followed by ID as an
82
+ outpatient. Pt notes that the pain and redness developed
83
+ initially approximately 2 weeks ago after a piece of wood hit
84
+ him
85
+ in his chest while shoveling snow. Pt denies instrumentation or
86
+ insertion of a foreign object into his chest wall. Pt denies
87
+ fevers/chills, but has noted to have night sweats x ___ days.
88
+ ________________________________________________________________
89
+
90
+
91
+ Past Medical History:
92
+ Phlegmon of his left chest wall s/p debridement on ___ and
93
+ closure on ___
94
+ Surgical reconstruction of right upper extremity after horse
95
+ accident
96
+ Surgery on left bicep after horse accident
97
+
98
+ Social History:
99
+ ___
100
+ Family History:
101
+ NC
102
+
103
+ Physical Exam:
104
+ PHYSICAL EXAMINATION
105
+
106
+ Temp:98.2 HR:73 BP:144/78 Resp:18 O(2)Sat:100
107
+
108
+ Constitutional: Comfortable
109
+ HEENT: Normocephalic, atraumatic, Pupils equal, round and
110
+ reactive to light, Extraocular muscles intact
111
+ Oropharynx within normal limits
112
+ Chest: +fluctuant mass to sternum, 2 areas of non-fluctuant
113
+ but erythematous areas
114
+ Cardiovascular: Regular Rate and Rhythm, Normal first and
115
+ second heart sounds
116
+ Abdominal: Soft, Nontender, Nondistended
117
+ GU/Flank: No costovertebral angle tenderness
118
+ Extr/Back: No cyanosis, clubbing or edema
119
+
120
+
121
+ Pertinent Results:
122
+ ___ 05:20AM BLOOD WBC-5.5 RBC-4.41* Hgb-13.8* Hct-39.8*
123
+ MCV-90 MCH-31.2 MCHC-34.6 RDW-14.2 Plt ___
124
+ ___ 12:15PM BLOOD WBC-6.1# RBC-4.67 Hgb-14.2 Hct-42.5
125
+ MCV-91 MCH-30.3 MCHC-33.4 RDW-14.3 Plt ___
126
+ ___ 12:15PM BLOOD Neuts-68.1 ___ Monos-6.1 Eos-2.6
127
+ Baso-0.6
128
+ ___ 05:20AM BLOOD Plt ___
129
+ ___ 12:15PM BLOOD Plt ___
130
+ ___ 05:20AM BLOOD Glucose-99 UreaN-12 Creat-0.7 Na-140
131
+ K-3.5 Cl-106 HCO3-26 AnGap-12
132
+ ___ 12:15PM BLOOD Glucose-98 UreaN-8 Creat-0.6 Na-141 K-3.8
133
+ Cl-106 HCO3-27 AnGap-12
134
+ ___ 10:00AM BLOOD CK(CPK)-145
135
+ ___ 05:40AM BLOOD CK(CPK)-144
136
+ ___ 10:00AM BLOOD CK-MB-6 cTropnT-<0.01
137
+ ___ 05:40AM BLOOD CK-MB-5 cTropnT-<0.01
138
+ ___ 01:00AM BLOOD CK-MB-4 cTropnT-<0.01
139
+ ___ 09:06PM BLOOD CK-MB-3 cTropnT-<0.01
140
+ ___ 05:20AM BLOOD Calcium-8.3* Phos-3.7 Mg-2.1
141
+ ___ 01:02PM BLOOD Lactate-1.1
142
+
143
+ ___: ekg:
144
+
145
+ Sinus rhythm with first degree atrio-ventricular conduction
146
+ delay. Left
147
+ bundle-branch block. Compared to the previous tracing of
148
+ ___ there is no diagnostic change
149
+
150
+ ___: chest x-ray:'
151
+
152
+ IMPRESSION: No acute pulmonary process. There is a new
153
+ indwelling foreign
154
+ body within the soft tissues of the sternal bed presumably
155
+ placed
156
+ purposefully. There is no radiographic evidence of an acute
157
+ infection within the chest. Please note radiographic radiography
158
+ has limited sensitivity
159
+
160
+ ___: chest cat scan:
161
+
162
+ IMPRESSION: Interval decrease in size of nonenhancing anterior
163
+ left chest
164
+ wall phlegmon without drainable fluid collection. There has been
165
+ interval
166
+ placement of a radiodense linear wire-like object within it of
167
+ indeterminate etiology
168
+
169
+ ___: EKG:
170
+
171
+ Sinus bradycardia. Compared to the previous tracing there is no
172
+ diagnostic change
173
+
174
+ ___ SWAB gram stain 2 PMN, no positive culture
175
+ ___ URINE CULTURE pending
176
+ ___ Blood Culture pending
177
+ ___ Blood Culture pending
178
+
179
+
180
+ Brief Hospital Course:
181
+ ___ year old gentleman admitted to the Acute care service with
182
+ pain and redness chest flap. He had a prior admission for a
183
+ chest wall abscess necessiating debridement and closure with a
184
+ flap. Upon admission, he was made NPO, given intraveous fluids,
185
+ and he was started on vancomycin. On chest x-ray imaging he was
186
+ found to have a metallic object in the sternal bed. Plastics
187
+ was consulted and recommended removal of the metallic object.
188
+ On ___ was taken to the operating room for I+D of chest wall.
189
+ His operative course was notable for ST depressions on his EKG.
190
+ He had 3 sets of negative troponins and a post-operative EKG
191
+ which showed a left bundle branch block, which was noted on his
192
+ prior EKG.
193
+ His post-operative course was uneventful. Infectious disease
194
+ was consulted regarding the chronicity of the his chest wall
195
+ infection and have made recommendations for antibiotic coverage.
196
+ During the post-operative period he was maintained on
197
+ ciprofloxacin, flagyl and vancomycin. His chest swab culture
198
+ showed no micro-organisms. Blood cultures are still pending.
199
+ His intravenous antibiotics were discontinued on ___. He will
200
+ resume a week course of bactrim and ciprofloxacin upon discharge
201
+ as per infectious disease recommendation.
202
+ His vital signs have been stable and he is afebrile. His white
203
+ blood cell count is
204
+ 4.5. He is tolerating a regular diet and has been ambulating.
205
+ He will be discharged to a friend's home with ___ assistance.
206
+ It is recommended that he follow up at the Infectious disease
207
+ clinic in 1 week and schedule an appointment with his primary
208
+ care provider. He will be seen in the Acute Care clinic in 2
209
+ weeks.
210
+
211
+
212
+
213
+ Medications on Admission:
214
+ ___: VitD2 50,000U qweek, tylenol, calcium carbonate
215
+ Assessment:
216
+
217
+
218
+
219
+ Discharge Medications:
220
+ 1. docusate sodium 100 mg Capsule Sig: One (1) Capsule PO BID (2
221
+ times a day).
222
+ 2. senna 8.6 mg Tablet Sig: One (1) Tablet PO BID (2 times a
223
+ day) as needed for constipation.
224
+ 3. pantoprazole 40 mg Tablet, Delayed Release (E.C.) Sig: One
225
+ (1) Tablet, Delayed Release (E.C.) PO Q24H (every 24 hours).
226
+ 4. acetaminophen 325 mg Tablet Sig: Two (2) Tablet PO Q6H (every
227
+ 6 hours) as needed for pain, fever.
228
+ 5. calcium carbonate 200 mg (500 mg) Tablet, Chewable Sig: One
229
+ (1) Tablet, Chewable PO QID (4 times a day) as needed for
230
+ heartburn.
231
+ 6. oxycodone 5 mg Tablet Sig: ___ Tablets PO every six (6) hours
232
+ as needed for pain: may cause drowsiness, avoid driving.
233
+ Disp:*20 Tablet(s)* Refills:*0*
234
+ 7. ciprofloxacin 500 mg Tablet Sig: One (1) Tablet PO twice a
235
+ day for 7 days: 7 day course .
236
+ Disp:*14 Tablet(s)* Refills:*0*
237
+ 8. Bactrim DS 800-160 mg Tablet Sig: One (1) Tablet PO twice a
238
+ day for 7 days.
239
+ Disp:*14 Tablet(s)* Refills:*0*
240
+
241
+
242
+ Discharge Disposition:
243
+ Home With Service
244
+
245
+ Facility:
246
+ ___
247
+
248
+ Discharge Diagnosis:
249
+ Cellulitis chest wall
250
+ Foreign body chest wall
251
+
252
+
253
+ Discharge Condition:
254
+ Mental Status: Clear and coherent.
255
+ Level of Consciousness: Alert and interactive.
256
+ Activity Status: Ambulatory - Independent.
257
+
258
+
259
+ Discharge Instructions:
260
+ You were admitted to the hospital with an infected chest flap.
261
+ You were started on intravenous antibiotics. You will need to
262
+ remain on oral antibiotics for 1 week after you are discharged.
263
+ You are now preparing for discharge home with the following
264
+ instructions:
265
+
266
+ Please call your doctor or nurse practitioner or return to the
267
+ Emergency Department for any of the following:
268
+
269
+ *You experience new chest pain, pressure, squeezing or
270
+ tightness.
271
+
272
+ *New or worsening cough, shortness of breath, or wheeze.
273
+
274
+ *If you are vomiting and cannot keep down fluids or your
275
+ medications.
276
+
277
+ *You are getting dehydrated due to continued vomiting, diarrhea,
278
+ or other reasons. Signs of dehydration include dry mouth, rapid
279
+ heartbeat, or feeling dizzy or faint when standing.
280
+
281
+ *You see blood or dark/black material when you vomit or have a
282
+ bowel movement.
283
+
284
+ *You experience burning when you urinate, have blood in your
285
+ urine, or experience a discharge.
286
+
287
+ *Your pain in not improving within ___ hours or is not gone
288
+ within 24 hours. Call or return immediately if your pain is
289
+ getting worse or changes location or moving to your chest or
290
+ back.
291
+
292
+ *You have shaking chills, or fever greater than 101.5 degrees
293
+ Fahrenheit or 38 degrees Celsius.
294
+
295
+ *Any change in your symptoms, or any new symptoms that concern
296
+ you.
297
+
298
+ Please resume all regular home medications , unless specifically
299
+ advised not to take a particular medication. Also, please take
300
+ any new medications as prescribed.
301
+
302
+ Please get plenty of rest, continue to ambulate several times
303
+ per day, and drink adequate amounts of fluids. Avoid lifting
304
+ weights greater than ___ lbs until you follow-up with your
305
+ surgeon.
306
+
307
+ Avoid driving or operating heavy machinery while taking pain
308
+ medications.
309
+
310
+ Please report any increase drainage, pain, or change in wound
311
+
312
+
313
+ Followup Instructions:
314
+ ___
315
+
316
+ [RADIOLOGY NOTE]
317
+ PA AND LATERAL CHEST ___ @ 11:42 hours.
318
+
319
+ HISTORY: Chest wall sternal infection.
320
+
321
+ COMPARISON: Multiple priors, the most recent dated ___.
322
+
323
+ FINDINGS: The lungs are clear without consolidation or edema. Chronic and
324
+ stable blunting of the left costophrenic angle is again noted and presumably
325
+ due to chronic pleural thickening. There has been interval placement of a
326
+ thin linear metal object vertically along the left aspect of the sternal bed.
327
+ This is of indeterminate etiology. The mediastinum is otherwise unremarkable.
328
+ The cardiac silhouette is within normal limits for size. No right effusion is
329
+ noted. There is no pneumothorax.
330
+
331
+ IMPRESSION: No acute pulmonary process. There is a new indwelling foreign
332
+ body within the soft tissues of the sternal bed presumably placed
333
+ purposefully. There is no radiographic evidence of an acute infection within
334
+ the chest. Please note radiographic radiography has limited sensitivity.
335
+
336
+ [RADIOLOGY NOTE]
337
+ CLINICAL INFORMATION: ___ male with history of chest wall abscess and
338
+ a new foreign body within it.
339
+
340
+ COMPARISON: PA and lateral performed same day, as well as CT chest, ___.
341
+
342
+ TECHNIQUE: Axial images were acquired of the chest following the
343
+ administration of intravenous contrast, and reformatted in the coronal and
344
+ sagittal planes.
345
+
346
+ FINDINGS: Interval decrease in size of a left anterior chest wall phlegmon,
347
+ now measuring 1.7 x 4.8 x 5.4 cm. There is overlying skin thickening, not
348
+ significantly changed compared with prior. There is no abnormal enhancement
349
+ of this soft tissue accumulation. No internal hypodensity is seen to suggest
350
+ a drainable fluid collection. A metallic density thin wire is seen measuring
351
+ approximately 13 cm in length and taking a cephalocaudad approach along the
352
+ anterior chest wall in the region of the abscess. At the costochondral
353
+ junction of the anterior sixth rib on the left, there is a newly appreciated
354
+ hyperdense focus which might represent foreign body or bone fragment. There
355
+ is no osteolysis.
356
+
357
+ The heart remains normal in size and configuration. There is no pleural or
358
+ pericardial effusion. There is minimal atherosclerotic change of the aortic
359
+ arch, the great vessels are otherwise unremarkable. The central pulmonary
360
+ arteries are patent. The central airways appear patent. A granuloma is again
361
+ noted in the left lung base and there is calcification of the inferior pleural
362
+ surface of the left lung. There are calcified but non-enlarged left hilar
363
+ lymph nodes which are stable in appearance. There is no pathologically
364
+ enlarged axillary or hilar lymphadenopathy. While this exam is not tailored
365
+ to evaluate the subdiaphragmatic structures, the visualized portions are
366
+ unremarkable. Note is again made of paraseptal and centrilobular emphysema in
367
+ the bilateral apices. There is mild degenerative change of the visualized
368
+ thoracic spine without concerning lytic or blastic lesions.
369
+
370
+ IMPRESSION: Interval decrease in size of nonenhancing anterior left chest
371
+ wall phlegmon without drainable fluid collection. There has been interval
372
+ placement of a radiodense linear wire-like object within it of indeterminate
373
+ etiology.
summaries/subject_14899292_hadm_24095441_model_input.txt ADDED
@@ -0,0 +1,389 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ PRE-OPERATIVE SUMMARY INPUT (SINGLE ADMISSION):
2
+
3
+ PATIENT:
4
+ - Age: 57
5
+ - Gender: M
6
+
7
+ ADMISSION:
8
+ - Admission ID: 24095441
9
+ - Admission Type: EW EMER.
10
+ - Admission Location: EMERGENCY ROOM
11
+ - Discharge Location: HOME HEALTH CARE
12
+ - Insurance: Other
13
+ - Race: WHITE
14
+ - Marital Status: SINGLE
15
+ - Language: ENGLISH
16
+
17
+ PROCEDURES (1 total):
18
+ 1. ICD-9: 8605
19
+
20
+ DIAGNOSES (2 total):
21
+ 1. ICD-9: 6822
22
+ 2. ICD-9: V600
23
+
24
+ LABORATORY RESULTS:
25
+ Total laboratory events: 48
26
+ Most frequent lab tests:
27
+ - Item ID 50910: 4 measurements
28
+ - Item ID 50911: 4 measurements
29
+ - Item ID 51003: 4 measurements
30
+ - Item ID 50902: 2 measurements
31
+ - Item ID 50912: 2 measurements
32
+
33
+ CLINICAL NOTES:
34
+ [DISCHARGE]
35
+ Name: ___ Unit No: ___
36
+
37
+ Admission Date: ___ Discharge Date: ___
38
+
39
+ Date of Birth: ___ Sex: M
40
+
41
+ Service: SURGERY
42
+
43
+ Allergies:
44
+ Clindamycin
45
+
46
+ Attending: ___.
47
+
48
+ Chief Complaint:
49
+ pain flap site
50
+
51
+ Major Surgical or Invasive Procedure:
52
+ ___ I&D of chest wall, removal of foreign body
53
+
54
+
55
+ History of Present Illness:
56
+ ___ is a ___ year old man with hx of chronic L chest wall
57
+ infection s/p debridement on ___ by Dr. ___ ___ closure
58
+ on
59
+ ___ by Dr. ___ plastic surgery. He presents to ED today
60
+ from ___ clinic c/o ___ wk hx of worsening erythema and pain over
61
+ his past flap site and a fluctuant mass that has developed
62
+ superior to his prior site of infections. Of note, he was
63
+ hospitalized from ___ for cellulitis and completed a 2 wk
64
+ course of IV vancomycin and has been followed by ID as an
65
+ outpatient. Pt notes that the pain and redness developed
66
+ initially approximately 2 weeks ago after a piece of wood hit
67
+ him
68
+ in his chest while shoveling snow. Pt denies instrumentation or
69
+ insertion of a foreign object into his chest wall. Pt denies
70
+ fevers/chills, but has noted to have night sweats x ___ days.
71
+ ________________________________________________________________
72
+
73
+
74
+ Past Medical History:
75
+ Phlegmon of his left chest wall s/p debridement on ___ and
76
+ closure on ___
77
+ Surgical reconstruction of right upper extremity after horse
78
+ accident
79
+ Surgery on left bicep after horse accident
80
+
81
+ Social History:
82
+ ___
83
+ Family History:
84
+ NC
85
+
86
+ Physical Exam:
87
+ PHYSICAL EXAMINATION
88
+
89
+ Temp:98.2 HR:73 BP:144/78 Resp:18 O(2)Sat:100
90
+
91
+ Constitutional: Comfortable
92
+ HEENT: Normocephalic, atraumatic, Pupils equal, round and
93
+ reactive to light, Extraocular muscles intact
94
+ Oropharynx within normal limits
95
+ Chest: +fluctuant mass to sternum, 2 areas of non-fluctuant
96
+ but erythematous areas
97
+ Cardiovascular: Regular Rate and Rhythm, Normal first and
98
+ second heart sounds
99
+ Abdominal: Soft, Nontender, Nondistended
100
+ GU/Flank: No costovertebral angle tenderness
101
+ Extr/Back: No cyanosis, clubbing or edema
102
+
103
+
104
+ Pertinent Results:
105
+ ___ 05:20AM BLOOD WBC-5.5 RBC-4.41* Hgb-13.8* Hct-39.8*
106
+ MCV-90 MCH-31.2 MCHC-34.6 RDW-14.2 Plt ___
107
+ ___ 12:15PM BLOOD WBC-6.1# RBC-4.67 Hgb-14.2 Hct-42.5
108
+ MCV-91 MCH-30.3 MCHC-33.4 RDW-14.3 Plt ___
109
+ ___ 12:15PM BLOOD Neuts-68.1 ___ Monos-6.1 Eos-2.6
110
+ Baso-0.6
111
+ ___ 05:20AM BLOOD Plt ___
112
+ ___ 12:15PM BLOOD Plt ___
113
+ ___ 05:20AM BLOOD Glucose-99 UreaN-12 Creat-0.7 Na-140
114
+ K-3.5 Cl-106 HCO3-26 AnGap-12
115
+ ___ 12:15PM BLOOD Glucose-98 UreaN-8 Creat-0.6 Na-141 K-3.8
116
+ Cl-106 HCO3-27 AnGap-12
117
+ ___ 10:00AM BLOOD CK(CPK)-145
118
+ ___ 05:40AM BLOOD CK(CPK)-144
119
+ ___ 10:00AM BLOOD CK-MB-6 cTropnT-<0.01
120
+ ___ 05:40AM BLOOD CK-MB-5 cTropnT-<0.01
121
+ ___ 01:00AM BLOOD CK-MB-4 cTropnT-<0.01
122
+ ___ 09:06PM BLOOD CK-MB-3 cTropnT-<0.01
123
+ ___ 05:20AM BLOOD Calcium-8.3* Phos-3.7 Mg-2.1
124
+ ___ 01:02PM BLOOD Lactate-1.1
125
+
126
+ ___: ekg:
127
+
128
+ Sinus rhythm with first degree atrio-ventricular conduction
129
+ delay. Left
130
+ bundle-branch block. Compared to the previous tracing of
131
+ ___ there is no diagnostic change
132
+
133
+ ___: chest x-ray:'
134
+
135
+ IMPRESSION: No acute pulmonary process. There is a new
136
+ indwelling foreign
137
+ body within the soft tissues of the sternal bed presumably
138
+ placed
139
+ purposefully. There is no radiographic evidence of an acute
140
+ infection within the chest. Please note radiographic radiography
141
+ has limited sensitivity
142
+
143
+ ___: chest cat scan:
144
+
145
+ IMPRESSION: Interval decrease in size of nonenhancing anterior
146
+ left chest
147
+ wall phlegmon without drainable fluid collection. There has been
148
+ interval
149
+ placement of a radiodense linear wire-like object within it of
150
+ indeterminate etiology
151
+
152
+ ___: EKG:
153
+
154
+ Sinus bradycardia. Compared to the previous tracing there is no
155
+ diagnostic change
156
+
157
+ ___ SWAB gram stain 2 PMN, no positive culture
158
+ ___ URINE CULTURE pending
159
+ ___ Blood Culture pending
160
+ ___ Blood Culture pending
161
+
162
+
163
+ Brief Hospital Course:
164
+ ___ year old gentleman admitted to the Acute care service with
165
+ pain and redness chest flap. He had a prior admission for a
166
+ chest wall abscess necessiating debridement and closure with a
167
+ flap. Upon admission, he was made NPO, given intraveous fluids,
168
+ and he was started on vancomycin. On chest x-ray imaging he was
169
+ found to have a metallic object in the sternal bed. Plastics
170
+ was consulted and recommended removal of the metallic object.
171
+ On ___ was taken to the operating room for I+D of chest wall.
172
+ His operative course was notable for ST depressions on his EKG.
173
+ He had 3 sets of negative troponins and a post-operative EKG
174
+ which showed a left bundle branch block, which was noted on his
175
+ prior EKG.
176
+ His post-operative course was uneventful. Infectious disease
177
+ was consulted regarding the chronicity of the his chest wall
178
+ infection and have made recommendations for antibiotic coverage.
179
+ During the post-operative period he was maintained on
180
+ ciprofloxacin, flagyl and vancomycin. His chest swab culture
181
+ showed no micro-organisms. Blood cultures are still pending.
182
+ His intravenous antibiotics were discontinued on ___. He will
183
+ resume a week course of bactrim and ciprofloxacin upon discharge
184
+ as per infectious disease recommendation.
185
+ His vital signs have been stable and he is afebrile. His white
186
+ blood cell count is
187
+ 4.5. He is tolerating a regular diet and has been ambulating.
188
+ He will be discharged to a friend's home with ___ assistance.
189
+ It is recommended that he follow up at the Infectious disease
190
+ clinic in 1 week and schedule an appointment with his primary
191
+ care provider. He will be seen in the Acute Care clinic in 2
192
+ weeks.
193
+
194
+
195
+
196
+ Medications on Admission:
197
+ ___: VitD2 50,000U qweek, tylenol, calcium carbonate
198
+ Assessment:
199
+
200
+
201
+
202
+ Discharge Medications:
203
+ 1. docusate sodium 100 mg Capsule Sig: One (1) Capsule PO BID (2
204
+ times a day).
205
+ 2. senna 8.6 mg Tablet Sig: One (1) Tablet PO BID (2 times a
206
+ day) as needed for constipation.
207
+ 3. pantoprazole 40 mg Tablet, Delayed Release (E.C.) Sig: One
208
+ (1) Tablet, Delayed Release (E.C.) PO Q24H (every 24 hours).
209
+ 4. acetaminophen 325 mg Tablet Sig: Two (2) Tablet PO Q6H (every
210
+ 6 hours) as needed for pain, fever.
211
+ 5. calcium carbonate 200 mg (500 mg) Tablet, Chewable Sig: One
212
+ (1) Tablet, Chewable PO QID (4 times a day) as needed for
213
+ heartburn.
214
+ 6. oxycodone 5 mg Tablet Sig: ___ Tablets PO every six (6) hours
215
+ as needed for pain: may cause drowsiness, avoid driving.
216
+ Disp:*20 Tablet(s)* Refills:*0*
217
+ 7. ciprofloxacin 500 mg Tablet Sig: One (1) Tablet PO twice a
218
+ day for 7 days: 7 day course .
219
+ Disp:*14 Tablet(s)* Refills:*0*
220
+ 8. Bactrim DS 800-160 mg Tablet Sig: One (1) Tablet PO twice a
221
+ day for 7 days.
222
+ Disp:*14 Tablet(s)* Refills:*0*
223
+
224
+
225
+ Discharge Disposition:
226
+ Home With Service
227
+
228
+ Facility:
229
+ ___
230
+
231
+ Discharge Diagnosis:
232
+ Cellulitis chest wall
233
+ Foreign body chest wall
234
+
235
+
236
+ Discharge Condition:
237
+ Mental Status: Clear and coherent.
238
+ Level of Consciousness: Alert and interactive.
239
+ Activity Status: Ambulatory - Independent.
240
+
241
+
242
+ Discharge Instructions:
243
+ You were admitted to the hospital with an infected chest flap.
244
+ You were started on intravenous antibiotics. You will need to
245
+ remain on oral antibiotics for 1 week after you are discharged.
246
+ You are now preparing for discharge home with the following
247
+ instructions:
248
+
249
+ Please call your doctor or nurse practitioner or return to the
250
+ Emergency Department for any of the following:
251
+
252
+ *You experience new chest pain, pressure, squeezing or
253
+ tightness.
254
+
255
+ *New or worsening cough, shortness of breath, or wheeze.
256
+
257
+ *If you are vomiting and cannot keep down fluids or your
258
+ medications.
259
+
260
+ *You are getting dehydrated due to continued vomiting, diarrhea,
261
+ or other reasons. Signs of dehydration include dry mouth, rapid
262
+ heartbeat, or feeling dizzy or faint when standing.
263
+
264
+ *You see blood or dark/black material when you vomit or have a
265
+ bowel movement.
266
+
267
+ *You experience burning when you urinate, have blood in your
268
+ urine, or experience a discharge.
269
+
270
+ *Your pain in not improving within ___ hours or is not gone
271
+ within 24 hours. Call or return immediately if your pain is
272
+ getting worse or changes location or moving to your chest or
273
+ back.
274
+
275
+ *You have shaking chills, or fever greater than 101.5 degrees
276
+ Fahrenheit or 38 degrees Celsius.
277
+
278
+ *Any change in your symptoms, or any new symptoms that concern
279
+ you.
280
+
281
+ Please resume all regular home medications , unless specifically
282
+ advised not to take a particular medication. Also, please take
283
+ any new medications as prescribed.
284
+
285
+ Please get plenty of rest, continue to ambulate several times
286
+ per day, and drink adequate amounts of fluids. Avoid lifting
287
+ weights greater than ___ lbs until you follow-up with your
288
+ surgeon.
289
+
290
+ Avoid driving or operating heavy machinery while taking pain
291
+ medications.
292
+
293
+ Please report any increase drainage, pain, or change in wound
294
+
295
+
296
+ Followup Instructions:
297
+ ___
298
+
299
+
300
+ [RADIOLOGY] PA AND LATERAL CHEST ___ @ 11:42 hours.
301
+
302
+ HISTORY: Chest wall sternal infection.
303
+
304
+ COMPARISON: Multiple priors, the most recent dated ___.
305
+
306
+ FINDINGS: The lungs are clear without consolidation or edema. Chronic and
307
+ stable blunting of the left costophrenic angle is again noted and presumably
308
+ due to chronic pleural thickening. There has been interval placement of a
309
+ thin linear metal object vertically along the left aspect of the sternal bed.
310
+ This is of indeterminate etiology. The mediastinum is otherwise unremarkable.
311
+ The cardiac silhouette is within normal limits for size. No right effusion is
312
+ noted. There is no pneumothorax.
313
+
314
+ IMPRESSION: No acute pulmonary process. There is a new indwelling foreign
315
+ body within the soft tissues of the sternal bed presumably placed
316
+ purposefully. There is no radiographic evidence of an acute infection within
317
+ the chest. Please note radiographic radiography has limited sensitivity.
318
+
319
+
320
+ [RADIOLOGY] CLINICAL INFORMATION: ___ male with history of chest wall abscess and
321
+ a new foreign body within it.
322
+
323
+ COMPARISON: PA and lateral performed same day, as well as CT chest, ___.
324
+
325
+ TECHNIQUE: Axial images were acquired of the chest following the
326
+ administration of intravenous contrast, and reformatted in the coronal and
327
+ sagittal planes.
328
+
329
+ FINDINGS: Interval decrease in size of a left anterior chest wall phlegmon,
330
+ now measuring 1.7 x 4.8 x 5.4 cm. There is overlying skin thickening, not
331
+ significantly changed compared with prior. There is no abnormal enhancement
332
+ of this soft tissue accumulation. No internal hypodensity is seen to suggest
333
+ a drainable fluid collection. A metallic density thin wire is seen measuring
334
+ approximately 13 cm in length and taking a cephalocaudad approach along the
335
+ anterior chest wall in the region of the abscess. At the costochondral
336
+ junction of the anterior sixth rib on the left, there is a newly appreciated
337
+ hyperdense focus which might represent foreign body or bone fragment. There
338
+ is no osteolysis.
339
+
340
+ The heart remains normal in size and configuration. There is no pleural or
341
+ pericardial effusion. There is minimal atherosclerotic change of the aortic
342
+ arch, the great vessels are otherwise unremarkable. The central pulmonary
343
+ arteries are patent. The central airways appear patent. A granuloma is again
344
+ noted in the left lung base and there is calcification of the inferior pleural
345
+ surface of the left lung. There are calcified but non-enlarged left hilar
346
+ lymph nodes which are stable in appearance. There is no pathologically
347
+ enlarged axillary or hilar lymphadenopathy. While this exam is not tailored
348
+ to evaluate the subdiaphragmatic structures, the visualized portions are
349
+ unremarkable. Note is again made of paraseptal and centrilobular emphysema in
350
+ the bilateral apices. There is mild degenerative change of the visualized
351
+ thoracic spine without concerning lytic or blastic lesions.
352
+
353
+ IMPRESSION: Interval decrease in size of nonenhancing anterior left chest
354
+ wall phlegmon without drainable fluid collection. There has been interval
355
+ placement of a radiodense linear wire-like object within it of indeterminate
356
+ etiology.
357
+
358
+ PROCEDURES (readable):
359
+ - 8605 (ICD-9) — Incision with removal of foreign body or device from skin and subcutaneous tissue
360
+
361
+ DIAGNOSES (readable):
362
+ - 6822 (ICD-9) — Cellulitis and abscess of trunk
363
+ - V600 (ICD-9) — Lack of housing
364
+
365
+ LAB ITEMS (readable, deduped):
366
+ - Anion Gap (Item 50868)
367
+ - Bicarbonate (Item 50882)
368
+ - Calcium, Total (Item 50893)
369
+ - Chloride (Item 50902)
370
+ - Creatine Kinase (CK) (Item 50910)
371
+ - Creatine Kinase, MB Isoenzyme (Item 50911)
372
+ - Creatinine (Item 50912)
373
+ - Glucose (Item 50931)
374
+ - Hematocrit (Item 51221)
375
+ - Hemoglobin (Item 51222)
376
+ - MCH (Item 51248)
377
+ - MCHC (Item 51249)
378
+ - MCV (Item 51250)
379
+ - Magnesium (Item 50960)
380
+ - Phosphate (Item 50970)
381
+ - Platelet Count (Item 51265)
382
+ - Potassium (Item 50971)
383
+ - RDW (Item 51277)
384
+ - Red Blood Cells (Item 51279)
385
+ - Sodium (Item 50983)
386
+ - Troponin T (Item 51003)
387
+ - Urea Nitrogen (Item 51006)
388
+ - Vancomycin (Item 51009)
389
+ - White Blood Cells (Item 51301)
summaries/subject_14899292_hadm_24095441_summary.txt ADDED
@@ -0,0 +1,77 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ **PRE-OPERATIVE SUMMARY**
2
+
3
+ **Patient Information:**
4
+
5
+ * Age: 57
6
+ * Gender: Male
7
+ * Admission ID: 24095441
8
+ * Admission Type: Emergency (EW)
9
+ * Admission Location: Emergency Room
10
+ * Discharge Location: Home Health Care
11
+ * Insurance: Other
12
+ * Race: White
13
+ * Marital Status: Single
14
+ * Language: English
15
+
16
+ **Diagnosis:**
17
+
18
+ * ICD-9: 6822 (Cellulitis and abscess of trunk)
19
+ * ICD-9: V600 (Lack of housing)
20
+
21
+ **Procedure:**
22
+
23
+ * ICD-9: 8605 (Incision with removal of foreign body or device from skin and subcutaneous tissue)
24
+
25
+ **Laboratory Results:**
26
+
27
+ * Total laboratory events: 48
28
+ * Most frequent lab tests:
29
+ + Item ID 50910: 4 measurements
30
+ + Item ID 50911: 4 measurements
31
+ + Item ID 51003: 4 measurements
32
+ + Item ID 50902: 2 measurements
33
+ + Item ID 50912: 2 measurements
34
+
35
+ **Clinical Notes:**
36
+
37
+ * The patient has a history of chronic chest wall infection, which was previously treated with debridement and closure with a flap.
38
+ * The patient presents with pain and redness at the previous flap site, which has developed into a fluctuant mass.
39
+ * The patient was previously hospitalized for cellulitis and completed a 2-week course of IV vancomycin.
40
+ * The patient denies instrumentation or insertion of a foreign object into the chest wall.
41
+ * The patient has night sweats for an unknown duration.
42
+ * The patient's past medical history includes phlegmon of the left chest wall, surgical reconstruction of the right upper extremity, and surgery on the left bicep.
43
+
44
+ **Physical Exam:**
45
+
46
+ * The patient's vital signs are:
47
+ + Temperature: 98.2°F
48
+ + Heart Rate: 73 beats per minute
49
+ + Blood Pressure: 144/78 mmHg
50
+ + Respiratory Rate: 18 breaths per minute
51
+ + Oxygen Saturation: 100%
52
+ * The patient's physical exam is notable for:
53
+ + A fluctuant mass to the sternum
54
+ + 2 areas of non-fluctuant but erythematous areas
55
+ + A metallic density thin wire-like object within the soft tissues of the sternal bed
56
+ + No radiographic evidence of an acute infection within the chest
57
+
58
+ **Imaging Results:**
59
+
60
+ * Chest X-ray:
61
+ + No acute pulmonary process
62
+ + A new indwelling foreign body within the soft tissues of the sternal bed
63
+ + No radiographic evidence of an acute infection within the chest
64
+ * CT Chest:
65
+ + Interval decrease in size of the non-enhancing anterior left chest wall phlegmon
66
+ + No abnormal enhancement of the soft tissue accumulation
67
+ + A metallic density thin wire-like object within the soft tissues of the sternal bed
68
+ + No osteolysis
69
+
70
+ **Medications:**
71
+
72
+ * The patient is currently taking:
73
+ + Docusate sodium 100 mg Capsule Sig: One (1) Capsule PO BID (2 times a day)
74
+ + Senna 8.6 mg Tablet Sig: One (1) Tablet PO BID (2 times a day) as needed for constipation
75
+ + Pantoprazole 40 mg Tablet, Delayed Release (E.C.) Sig: One (1) Tablet, Delayed Release (E.C.) PO Q24H (every 24 hours)
76
+ + Acetaminophen 325 mg Tablet Sig: Two (2) Tablet PO Q6H (every 6 hours) as needed for pain, fever
77
+ + Calcium carbonate 200 mg (500 mg) Tablet, Chewable Sig: One (1) Tablet, Chewable PO QID (4 times a
summaries/subject_14899292_hadm_24253579_input.txt ADDED
@@ -0,0 +1,351 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ PRE-OPERATIVE SUMMARY INPUT (SINGLE ADMISSION):
2
+
3
+ PATIENT:
4
+ - Age: 57
5
+ - Gender: M
6
+
7
+ ADMISSION:
8
+ - Admission ID: 24253579
9
+ - Admission Type: DIRECT EMER.
10
+ - Admission Location: CLINIC REFERRAL
11
+ - Discharge Location: SKILLED NURSING FACILITY
12
+ - Insurance: Other
13
+ - Race: WHITE
14
+ - Marital Status: SINGLE
15
+ - Language: ENGLISH
16
+
17
+ PROCEDURES (1 total):
18
+ - 3893 (ICD-9)
19
+
20
+ DIAGNOSES (6 total):
21
+ - 99859 (ICD-9)
22
+ - 6822 (ICD-9)
23
+ - 5780 (ICD-9)
24
+ - 34690 (ICD-9)
25
+ - V600 (ICD-9)
26
+ - V620 (ICD-9)
27
+
28
+ LABORATORY RESULTS:
29
+ - Item ID 50861: 1 measurements, 2150-04-21 23:34:00 to 2150-04-21 23:34:00
30
+ - Item ID 50863: 1 measurements, 2150-04-21 23:34:00 to 2150-04-21 23:34:00
31
+ - Item ID 50868: 7 measurements, 2150-04-21 23:34:00 to 2150-04-27 05:25:00
32
+ - Item ID 50878: 1 measurements, 2150-04-21 23:34:00 to 2150-04-21 23:34:00
33
+ - Item ID 50882: 7 measurements, 2150-04-21 23:34:00 to 2150-04-27 05:25:00
34
+ - Item ID 50885: 1 measurements, 2150-04-21 23:34:00 to 2150-04-21 23:34:00
35
+ - Item ID 50893: 1 measurements, 2150-04-22 08:00:00 to 2150-04-22 08:00:00
36
+ - Item ID 50902: 7 measurements, 2150-04-21 23:34:00 to 2150-04-27 05:25:00
37
+ - Item ID 50912: 7 measurements, 2150-04-21 23:34:00 to 2150-04-27 05:25:00
38
+ - Item ID 50920: 1 measurements, 2150-04-21 23:34:00 to 2150-04-21 23:34:00
39
+ - Item ID 50931: 7 measurements, 2150-04-21 23:34:00 to 2150-04-27 05:25:00
40
+ - Item ID 50960: 1 measurements, 2150-04-22 08:00:00 to 2150-04-22 08:00:00
41
+ - Item ID 50970: 1 measurements, 2150-04-22 08:00:00 to 2150-04-22 08:00:00
42
+ - Item ID 50971: 7 measurements, 2150-04-21 23:34:00 to 2150-04-27 05:25:00
43
+ - Item ID 50979: 1 measurements, 2150-04-27 05:25:00 to 2150-04-27 05:25:00
44
+ - Item ID 50983: 7 measurements, 2150-04-21 23:34:00 to 2150-04-27 05:25:00
45
+ - Item ID 51006: 7 measurements, 2150-04-21 23:34:00 to 2150-04-27 05:25:00
46
+ - Item ID 51009: 2 measurements, 2150-04-24 05:03:00 to 2150-04-27 05:25:00
47
+ - Item ID 51221: 7 measurements, 2150-04-21 23:34:00 to 2150-04-27 05:25:00
48
+ - Item ID 51222: 7 measurements, 2150-04-21 23:34:00 to 2150-04-27 05:25:00
49
+ - Item ID 51248: 7 measurements, 2150-04-21 23:34:00 to 2150-04-27 05:25:00
50
+ - Item ID 51249: 7 measurements, 2150-04-21 23:34:00 to 2150-04-27 05:25:00
51
+ - Item ID 51250: 7 measurements, 2150-04-21 23:34:00 to 2150-04-27 05:25:00
52
+ - Item ID 51265: 7 measurements, 2150-04-21 23:34:00 to 2150-04-27 05:25:00
53
+ - Item ID 51277: 7 measurements, 2150-04-21 23:34:00 to 2150-04-27 05:25:00
54
+ - Item ID 51279: 7 measurements, 2150-04-21 23:34:00 to 2150-04-27 05:25:00
55
+ - Item ID 51301: 7 measurements, 2150-04-21 23:34:00 to 2150-04-27 05:25:00
56
+
57
+ CLINICAL NOTES:
58
+ [DISCHARGE NOTE]
59
+ Name: ___ Unit No: ___
60
+
61
+ Admission Date: ___ Discharge Date: ___
62
+
63
+ Date of Birth: ___ Sex: M
64
+
65
+ Service: MEDICINE
66
+
67
+ Allergies:
68
+ Clindamycin
69
+
70
+ Attending: ___
71
+
72
+ Chief Complaint:
73
+ Cellulitis
74
+
75
+ Major Surgical or Invasive Procedure:
76
+ ___ line placement
77
+
78
+
79
+ History of Present Illness:
80
+ Patient is a ___ year old male with PMHx significant for a
81
+ chronic infection with phlegmon of his left chest wall s/p
82
+ debridement on ___ and closure on ___. He presents today
83
+ with symptoms consistent with cellulitis.
84
+ .
85
+ The patient was recently hospitalized at ___
86
+ (___) with nausea, vomiting and an episode of small volume
87
+ hematemsis. He was afebrile with normal WBC but some erythema
88
+ was seen at the drain site so he was discharge on doxycycline
89
+ with concern for a wound infection.
90
+ .
91
+ The patient has been followed since discharge in ___ by ___
92
+ clinic. Please see their notes in OMR for full details.
93
+ Briefly, he was last seen by ID on ___. At that time, he was
94
+ afebrile and overall well-appearing. On exam, there was
95
+ erythema around the wound. The drain was discontinued and he
96
+ was given levofloxacin and asked to continue the doxycycline
97
+ from a recent admission at OSH. Since then, he's noted
98
+ increased erythema and tenderness at the site. He was evaluated
99
+ in ___ clinic today and direct admitted for IV antibiotics.
100
+ .
101
+ On arrival to the floor, vital signs are T: 96.8 BP: 128/86 P:
102
+ 63 R: 20 O2: 94% on RA. The patient continues to report pain at
103
+ the debridement site. There is blanching erythema there as
104
+ well. He denies ongoing emesis. Denies significant abdominal
105
+ pain, denies hematochezia or melena. Denies fevers, chills,
106
+ nausea, vomiting.
107
+
108
+ Past Medical History:
109
+ Phlegmon of his left chest wall s/p debridement on ___ and
110
+ closure on ___
111
+ Surgical reconstruction of right upper extremity after horse
112
+ accident
113
+ Surgery on left bicep after horse accident
114
+
115
+ Social History:
116
+ ___
117
+ Family History:
118
+ NC
119
+
120
+ Physical Exam:
121
+ General: Alert, oriented, no acute distress but is favoring left
122
+ side.
123
+ HEENT: Sclera anicteric, MMM, oropharynx clear
124
+ Neck: supple, JVP not elevated, no LAD
125
+ Lungs: Clear to auscultation bilaterally, no wheezes, rales,
126
+ ronchi
127
+ CV: Regular rate and rhythm, normal S1 + S2, no murmurs, rubs,
128
+ gallops
129
+ Abdomen: soft, non-tender, non-distended, bowel sounds present,
130
+ no rebound tenderness or guarding
131
+ Ext: Warm, well perfused, 2+ pulses, no clubbing, cyanosis or
132
+ edema
133
+ Neuro: PERRLA, EOMI. CN intact
134
+ Derm: Left anterior chest wall with large incision (sutured).
135
+ Well-approximated wound edges with 3-4 cm area of surrounding
136
+ blanching erythema that is warm to touch and tender to
137
+ palpation. No obvious fluid collection noted. No drainage. JP
138
+ drain site is clean, dry and intact with no erythema.
139
+
140
+ Pertinent Results:
141
+ ___ 11:34PM BLOOD WBC-4.8 RBC-4.48* Hgb-13.0* Hct-39.4*
142
+ MCV-88 MCH-29.1 MCHC-33.0 RDW-13.8 Plt ___
143
+ ___ 08:00AM BLOOD WBC-4.3 RBC-4.89 Hgb-14.4 Hct-43.0 MCV-88
144
+ MCH-29.4 MCHC-33.5 RDW-13.7 Plt ___
145
+ ___ 10:30AM BLOOD WBC-3.9* RBC-4.67 Hgb-14.0 Hct-40.9
146
+ MCV-88 MCH-29.9 MCHC-34.1 RDW-13.8 Plt ___
147
+ ___ 05:03AM BLOOD WBC-3.8* RBC-4.47* Hgb-13.3* Hct-38.4*
148
+ MCV-86 MCH-29.8 MCHC-34.6 RDW-13.5 Plt ___
149
+ ___ 05:26AM BLOOD WBC-3.6* RBC-4.36* Hgb-12.8* Hct-38.1*
150
+ MCV-88 MCH-29.4 MCHC-33.6 RDW-13.7 Plt ___
151
+ ___ 05:31AM BLOOD WBC-4.0 RBC-4.57* Hgb-13.7* Hct-39.6*
152
+ MCV-87 MCH-30.0 MCHC-34.6 RDW-13.6 Plt ___
153
+ ___ 11:34PM BLOOD Glucose-141* UreaN-13 Creat-0.7 Na-137
154
+ K-3.3 Cl-103 HCO3-26 AnGap-11
155
+ ___ 08:00AM BLOOD Glucose-89 UreaN-12 Creat-0.7 Na-137
156
+ K-3.8 Cl-103 HCO3-26 AnGap-12
157
+ ___ 10:30AM BLOOD Glucose-120* UreaN-8 Creat-0.7 Na-140
158
+ K-3.7 Cl-105 HCO3-28 AnGap-11
159
+ ___ 05:03AM BLOOD Glucose-116* UreaN-11 Creat-0.8 Na-142
160
+ K-3.7 Cl-106 HCO3-27 AnGap-13
161
+ ___ 05:26AM BLOOD Glucose-106* UreaN-10 Creat-0.8 Na-141
162
+ K-3.9 Cl-104 HCO3-29 AnGap-12
163
+ ___ 05:31AM BLOOD Glucose-96 UreaN-15 Creat-0.8 Na-142
164
+ K-4.2 Cl-106 HCO3-30 AnGap-10
165
+ ___ 11:34PM BLOOD ALT-13 AST-17 AlkPhos-67 TotBili-0.5
166
+ ___ 08:00AM BLOOD Calcium-9.0 Phos-3.2 Mg-2.2
167
+ ___ 05:03AM BLOOD Vanco-11.3
168
+ ___ 05:25AM BLOOD WBC-3.3* RBC-4.47* Hgb-13.4* Hct-39.0*
169
+ MCV-87 MCH-29.9 MCHC-34.4 RDW-13.6 Plt ___
170
+ ___ 05:25AM BLOOD Glucose-85 UreaN-14 Creat-0.8 Na-139
171
+ K-3.7 Cl-104 HCO3-29 AnGap-10
172
+ ___ 11:34PM BLOOD ALT-13 AST-17 AlkPhos-67 TotBili-0.5
173
+ ___ 05:25AM BLOOD Vanco-16.3
174
+
175
+ Chest U/S (___)-
176
+ FINDINGS: Direct ultrasound examination was performed on the
177
+ left chest wall. There is a predominantly anechoic fluid
178
+ collection within the left anterior chest wall approximately 1
179
+ cm deep from the skin surface, measuring 2.7 x 0.4 x 1.9 cm (TRV
180
+ x AP x CC), without internal vascularity.
181
+
182
+ IMPRESSION: Left chest-wall fluid collection; infection of this
183
+ collection is not excluded on the basis of this exam.
184
+
185
+ CT Head (___)-
186
+ IMPRESSION: No acute intracranial process.
187
+
188
+
189
+ Brief Hospital Course:
190
+ Assessment and Plan: ___ male with chronic infection with
191
+ phlegmon s/p drainage in ___ admitted with post-operative
192
+ cellulitis
193
+ .
194
+ # Cellulitis- Given that he had not responded as hoped with PO
195
+ therapy, the patient was admitted for IV antibiotics. He was
196
+ started on IV vancomycin 1000mg q24 and responded well. Dose
197
+ was increased to 1250mg q24 on ___. ID followed throughout
198
+ the hospitalization. A chest U/S showed a small simple fluid
199
+ collection (no evidence of abscess) near the site. Plastic
200
+ surgery attempted bedside drainage but were not able to remove
201
+ much fluid. Plastic surgery also removed the patient's sutures.
202
+ As mentioned, his wound improved throughout the hospitalization
203
+ with decreased erythema and tenderness to palpation. He
204
+ remained afebrile without any elevation of WBC. He is being
205
+ discharged to a facility where he can complete his, course of IV
206
+ vancomycin, which is to continue until he follows up with
207
+ infectious disease clinic on ___. We ask that he have weekly
208
+ CBC w/diff, electrolytes (including BUN/Cr), LFT's and
209
+ vancomycin trough drawn starting on ___. Please fax
210
+ the results to infectious disease clinic at ___
211
+ .
212
+ # Headache- The patient experienced headaches while in the
213
+ hospital that were consistent with history of migraines. Pain
214
+ was relieved with tylenol. He preferred not to be on Fiorcet.
215
+ Sumatriptan was given as a one-time dose on ___ with response.
216
+ A CT head was obtained which did not show any acute process.
217
+ Neurologic exam did not demonstrate any focal deficits and the
218
+ patient's sensorium remained clear throughout the
219
+ hospitalization.
220
+ .
221
+ # Hemetemsis- Patient was recently admitted to OSH with small
222
+ volume hematemeis with no clear etiology. Per patient, he does
223
+ not have an extensive alcohol history or history of hepatitis.
224
+ He also denied recent NSAID use, abdominal pain. LFTs were
225
+ within normal limits. We started him on PO PPI BID x 6 weeks
226
+ with plans for an outpatient EGD for further work-up. He is to
227
+ avoid NSAIDs. He did not experience any hemetemesis while in
228
+ the hospital.
229
+ .
230
+ # Code: Full code
231
+
232
+
233
+ Medications on Admission:
234
+ ERGOCALCIFEROL (VITAMIN D2) [DRISDOL] - (Prescribed by Other
235
+ Provider) - 50,000 unit Capsule - 1 Capsule(s) by mouth weekly
236
+ .
237
+ Medications - OTC
238
+ ACETAMINOPHEN [TYLENOL] - (Prescribed by Other Provider) -
239
+ 325mg Tablet - 1 Tablet(s) by mouth prn
240
+ CALCIUM CARBONATE - (Prescribed by Other Provider) - 500 mg
241
+ (1,250 mg) Tablet - 1 Tablet(s) by mouth twice a day
242
+
243
+ Levofloxacin
244
+ Doxycycline
245
+
246
+ Discharge Medications:
247
+ 1. Vitamin D 50,000 unit Capsule Sig: One (1) Capsule PO once a
248
+ week.
249
+ 2. pantoprazole 40 mg Tablet, Delayed Release (E.C.) Sig: One
250
+ (1) Tablet, Delayed Release (E.C.) PO Q12H (every 12 hours).
251
+ Disp:*90 Tablet, Delayed Release (E.C.)(s)* Refills:*3*
252
+ 3. calcium carbonate 500 mg (1,250 mg) Tablet Sig: One (1)
253
+ Tablet PO twice a day.
254
+ 4. vancomycin in 0.9% sodium Cl 1.25 gram/250 mL Solution Sig:
255
+ One (1) rec solution Intravenous every twelve (12) hours for 26
256
+ doses: continue until he sees infectious disease in follow-up on
257
+ ___.
258
+ 5. acetaminophen 500 mg Tablet Sig: ___ Tablets PO Q6H (every 6
259
+ hours) as needed for headache: maximum of 4 grams daily.
260
+ 6. oxycodone 5 mg Tablet Sig: One (1) Tablet PO every six (6)
261
+ hours as needed for pain.
262
+ 7. bisacodyl 5 mg Tablet, Delayed Release (E.C.) Sig: Two (2)
263
+ Tablet, Delayed Release (E.C.) PO DAILY (Daily) as needed for
264
+ constipation.
265
+ 8. senna 8.6 mg Tablet Sig: One (1) Tablet PO BID (2 times a
266
+ day) as needed for constipation.
267
+
268
+
269
+ Discharge Disposition:
270
+ Extended Care
271
+
272
+ Facility:
273
+ ___
274
+
275
+ Discharge Diagnosis:
276
+ Primary- Cellulitis
277
+
278
+ Secondary- Chronic chest wall infection with phlegmon s/p
279
+ debridement and drainage in ___
280
+
281
+
282
+ Discharge Condition:
283
+ Mental Status: Clear and coherent.
284
+ Level of Consciousness: Alert and interactive.
285
+ Activity Status: Ambulatory - Independent.
286
+
287
+
288
+ Discharge Instructions:
289
+ You were admitted to the hospital with a worsening skin
290
+ infection around your previous wound. While here, you received
291
+ IV antibiotics and did well. You are being discharged with
292
+ plans to continue IV vancomycin (an antibiotic) to continue
293
+ until you follow-up with the infectious disease doctors ___
294
+ ___ at 2:30pm. Please make sure to follow-up with them to
295
+ monitor your progress on the medication.
296
+
297
+ The following changes were made to your medications:
298
+ 1. Please continue vancomycin 1.25gm IV every 12 hours until
299
+ ___.
300
+ 2. Please start taking pantoprazole 40mg by mouth twice a day
301
+ for 6 weeks.
302
+ 3. Please avoid advil and other NSAIDs for pain control.
303
+
304
+ Please follow-up with ID and your PCP on discharge.
305
+
306
+ Followup Instructions:
307
+ ___
308
+
309
+ [RADIOLOGY NOTE]
310
+ CHEST
311
+
312
+ HISTORY: Line placement, check PICC tip.
313
+
314
+ One view. Comparison with the previous study done ___. The lungs are
315
+ clear except for minimal streaky density consistent with subsegmental
316
+ atelectasis or scarring. The left costophrenic sulcus is mildly blunted, as
317
+ before. The heart and mediastinal structures are unchanged. A PICC line has
318
+ been inserted on the right. It terminates in the mid superior vena cava.
319
+
320
+ IMPRESSION: Line placement as described.
321
+
322
+ [RADIOLOGY NOTE]
323
+ HISTORY: ___ man with left chest wall phlegmon, status post
324
+ debridement. Now with worsening cellulitis around the incision, concerning
325
+ for underlying fluid collection.
326
+
327
+ COMPARISON: Limited comparison from pre-procedural CT chest on ___.
328
+
329
+ FINDINGS: Direct ultrasound examination was performed on the left chest wall.
330
+ There is a predominantly anechoic fluid collection within the left anterior
331
+ chest wall approximately 1 cm deep from the skin surface, measuring 2.7 x 0.4
332
+ x 1.9 cm (TRV x AP x CC), without internal vascularity.
333
+
334
+ IMPRESSION: Left chest-wall fluid collection; infection of this collection is
335
+ not excluded on the basis of this exam.
336
+
337
+ [RADIOLOGY NOTE]
338
+ CLINICAL INFORMATION: ___ male with severe onset headache. Evaluate
339
+ for bleed.
340
+
341
+ TECHNIQUE: Axial images were acquired of the head without contrast.
342
+
343
+ COMPARISON: None available.
344
+
345
+ FINDINGS: There is no acute intracranial hemorrhage, mass effect, or
346
+ extra-axial collection. The ventricles and sulci are normal in size and
347
+ configuration. Gray-white differentiation is preserved throughout. The
348
+ visualized portions of the orbits are unremarkable. The mastoid air cells are
349
+ clear bilaterally, as are the visualized paranasal sinuses.
350
+
351
+ IMPRESSION: No acute intracranial process.
summaries/subject_14899292_hadm_24253579_model_input.txt ADDED
@@ -0,0 +1,371 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ PRE-OPERATIVE SUMMARY INPUT (SINGLE ADMISSION):
2
+
3
+ PATIENT:
4
+ - Age: 57
5
+ - Gender: M
6
+
7
+ ADMISSION:
8
+ - Admission ID: 24253579
9
+ - Admission Type: DIRECT EMER.
10
+ - Admission Location: CLINIC REFERRAL
11
+ - Discharge Location: SKILLED NURSING FACILITY
12
+ - Insurance: Other
13
+ - Race: WHITE
14
+ - Marital Status: SINGLE
15
+ - Language: ENGLISH
16
+
17
+ PROCEDURES (1 total):
18
+ 1. ICD-9: 3893
19
+
20
+ DIAGNOSES (6 total):
21
+ 1. ICD-9: 99859
22
+ 2. ICD-9: 6822
23
+ 3. ICD-9: 5780
24
+ 4. ICD-9: 34690
25
+ 5. ICD-9: V600
26
+ 6. ICD-9: V620
27
+
28
+ LABORATORY RESULTS:
29
+ Total laboratory events: 130
30
+ Most frequent lab tests:
31
+ - Item ID 50868: 7 measurements
32
+ - Item ID 50882: 7 measurements
33
+ - Item ID 50902: 7 measurements
34
+ - Item ID 50912: 7 measurements
35
+ - Item ID 50931: 7 measurements
36
+
37
+ CLINICAL NOTES:
38
+ [DISCHARGE]
39
+ Name: ___ Unit No: ___
40
+
41
+ Admission Date: ___ Discharge Date: ___
42
+
43
+ Date of Birth: ___ Sex: M
44
+
45
+ Service: MEDICINE
46
+
47
+ Allergies:
48
+ Clindamycin
49
+
50
+ Attending: ___
51
+
52
+ Chief Complaint:
53
+ Cellulitis
54
+
55
+ Major Surgical or Invasive Procedure:
56
+ ___ line placement
57
+
58
+
59
+ History of Present Illness:
60
+ Patient is a ___ year old male with PMHx significant for a
61
+ chronic infection with phlegmon of his left chest wall s/p
62
+ debridement on ___ and closure on ___. He presents today
63
+ with symptoms consistent with cellulitis.
64
+ .
65
+ The patient was recently hospitalized at ___
66
+ (___) with nausea, vomiting and an episode of small volume
67
+ hematemsis. He was afebrile with normal WBC but some erythema
68
+ was seen at the drain site so he was discharge on doxycycline
69
+ with concern for a wound infection.
70
+ .
71
+ The patient has been followed since discharge in ___ by ___
72
+ clinic. Please see their notes in OMR for full details.
73
+ Briefly, he was last seen by ID on ___. At that time, he was
74
+ afebrile and overall well-appearing. On exam, there was
75
+ erythema around the wound. The drain was discontinued and he
76
+ was given levofloxacin and asked to continue the doxycycline
77
+ from a recent admission at OSH. Since then, he's noted
78
+ increased erythema and tenderness at the site. He was evaluated
79
+ in ___ clinic today and direct admitted for IV antibiotics.
80
+ .
81
+ On arrival to the floor, vital signs are T: 96.8 BP: 128/86 P:
82
+ 63 R: 20 O2: 94% on RA. The patient continues to report pain at
83
+ the debridement site. There is blanching erythema there as
84
+ well. He denies ongoing emesis. Denies significant abdominal
85
+ pain, denies hematochezia or melena. Denies fevers, chills,
86
+ nausea, vomiting.
87
+
88
+ Past Medical History:
89
+ Phlegmon of his left chest wall s/p debridement on ___ and
90
+ closure on ___
91
+ Surgical reconstruction of right upper extremity after horse
92
+ accident
93
+ Surgery on left bicep after horse accident
94
+
95
+ Social History:
96
+ ___
97
+ Family History:
98
+ NC
99
+
100
+ Physical Exam:
101
+ General: Alert, oriented, no acute distress but is favoring left
102
+ side.
103
+ HEENT: Sclera anicteric, MMM, oropharynx clear
104
+ Neck: supple, JVP not elevated, no LAD
105
+ Lungs: Clear to auscultation bilaterally, no wheezes, rales,
106
+ ronchi
107
+ CV: Regular rate and rhythm, normal S1 + S2, no murmurs, rubs,
108
+ gallops
109
+ Abdomen: soft, non-tender, non-distended, bowel sounds present,
110
+ no rebound tenderness or guarding
111
+ Ext: Warm, well perfused, 2+ pulses, no clubbing, cyanosis or
112
+ edema
113
+ Neuro: PERRLA, EOMI. CN intact
114
+ Derm: Left anterior chest wall with large incision (sutured).
115
+ Well-approximated wound edges with 3-4 cm area of surrounding
116
+ blanching erythema that is warm to touch and tender to
117
+ palpation. No obvious fluid collection noted. No drainage. JP
118
+ drain site is clean, dry and intact with no erythema.
119
+
120
+ Pertinent Results:
121
+ ___ 11:34PM BLOOD WBC-4.8 RBC-4.48* Hgb-13.0* Hct-39.4*
122
+ MCV-88 MCH-29.1 MCHC-33.0 RDW-13.8 Plt ___
123
+ ___ 08:00AM BLOOD WBC-4.3 RBC-4.89 Hgb-14.4 Hct-43.0 MCV-88
124
+ MCH-29.4 MCHC-33.5 RDW-13.7 Plt ___
125
+ ___ 10:30AM BLOOD WBC-3.9* RBC-4.67 Hgb-14.0 Hct-40.9
126
+ MCV-88 MCH-29.9 MCHC-34.1 RDW-13.8 Plt ___
127
+ ___ 05:03AM BLOOD WBC-3.8* RBC-4.47* Hgb-13.3* Hct-38.4*
128
+ MCV-86 MCH-29.8 MCHC-34.6 RDW-13.5 Plt ___
129
+ ___ 05:26AM BLOOD WBC-3.6* RBC-4.36* Hgb-12.8* Hct-38.1*
130
+ MCV-88 MCH-29.4 MCHC-33.6 RDW-13.7 Plt ___
131
+ ___ 05:31AM BLOOD WBC-4.0 RBC-4.57* Hgb-13.7* Hct-39.6*
132
+ MCV-87 MCH-30.0 MCHC-34.6 RDW-13.6 Plt ___
133
+ ___ 11:34PM BLOOD Glucose-141* UreaN-13 Creat-0.7 Na-137
134
+ K-3.3 Cl-103 HCO3-26 AnGap-11
135
+ ___ 08:00AM BLOOD Glucose-89 UreaN-12 Creat-0.7 Na-137
136
+ K-3.8 Cl-103 HCO3-26 AnGap-12
137
+ ___ 10:30AM BLOOD Glucose-120* UreaN-8 Creat-0.7 Na-140
138
+ K-3.7 Cl-105 HCO3-28 AnGap-11
139
+ ___ 05:03AM BLOOD Glucose-116* UreaN-11 Creat-0.8 Na-142
140
+ K-3.7 Cl-106 HCO3-27 AnGap-13
141
+ ___ 05:26AM BLOOD Glucose-106* UreaN-10 Creat-0.8 Na-141
142
+ K-3.9 Cl-104 HCO3-29 AnGap-12
143
+ ___ 05:31AM BLOOD Glucose-96 UreaN-15 Creat-0.8 Na-142
144
+ K-4.2 Cl-106 HCO3-30 AnGap-10
145
+ ___ 11:34PM BLOOD ALT-13 AST-17 AlkPhos-67 TotBili-0.5
146
+ ___ 08:00AM BLOOD Calcium-9.0 Phos-3.2 Mg-2.2
147
+ ___ 05:03AM BLOOD Vanco-11.3
148
+ ___ 05:25AM BLOOD WBC-3.3* RBC-4.47* Hgb-13.4* Hct-39.0*
149
+ MCV-87 MCH-29.9 MCHC-34.4 RDW-13.6 Plt ___
150
+ ___ 05:25AM BLOOD Glucose-85 UreaN-14 Creat-0.8 Na-139
151
+ K-3.7 Cl-104 HCO3-29 AnGap-10
152
+ ___ 11:34PM BLOOD ALT-13 AST-17 AlkPhos-67 TotBili-0.5
153
+ ___ 05:25AM BLOOD Vanco-16.3
154
+
155
+ Chest U/S (___)-
156
+ FINDINGS: Direct ultrasound examination was performed on the
157
+ left chest wall. There is a predominantly anechoic fluid
158
+ collection within the left anterior chest wall approximately 1
159
+ cm deep from the skin surface, measuring 2.7 x 0.4 x 1.9 cm (TRV
160
+ x AP x CC), without internal vascularity.
161
+
162
+ IMPRESSION: Left chest-wall fluid collection; infection of this
163
+ collection is not excluded on the basis of this exam.
164
+
165
+ CT Head (___)-
166
+ IMPRESSION: No acute intracranial process.
167
+
168
+
169
+ Brief Hospital Course:
170
+ Assessment and Plan: ___ male with chronic infection with
171
+ phlegmon s/p drainage in ___ admitted with post-operative
172
+ cellulitis
173
+ .
174
+ # Cellulitis- Given that he had not responded as hoped with PO
175
+ therapy, the patient was admitted for IV antibiotics. He was
176
+ started on IV vancomycin 1000mg q24 and responded well. Dose
177
+ was increased to 1250mg q24 on ___. ID followed throughout
178
+ the hospitalization. A chest U/S showed a small simple fluid
179
+ collection (no evidence of abscess) near the site. Plastic
180
+ surgery attempted bedside drainage but were not able to remove
181
+ much fluid. Plastic surgery also removed the patient's sutures.
182
+ As mentioned, his wound improved throughout the hospitalization
183
+ with decreased erythema and tenderness to palpation. He
184
+ remained afebrile without any elevation of WBC. He is being
185
+ discharged to a facility where he can complete his, course of IV
186
+ vancomycin, which is to continue until he follows up with
187
+ infectious disease clinic on ___. We ask that he have weekly
188
+ CBC w/diff, electrolytes (including BUN/Cr), LFT's and
189
+ vancomycin trough drawn starting on ___. Please fax
190
+ the results to infectious disease clinic at ___
191
+ .
192
+ # Headache- The patient experienced headaches while in the
193
+ hospital that were consistent with history of migraines. Pain
194
+ was relieved with tylenol. He preferred not to be on Fiorcet.
195
+ Sumatriptan was given as a one-time dose on ___ with response.
196
+ A CT head was obtained which did not show any acute process.
197
+ Neurologic exam did not demonstrate any focal deficits and the
198
+ patient's sensorium remained clear throughout the
199
+ hospitalization.
200
+ .
201
+ # Hemetemsis- Patient was recently admitted to OSH with small
202
+ volume hematemeis with no clear etiology. Per patient, he does
203
+ not have an extensive alcohol history or history of hepatitis.
204
+ He also denied recent NSAID use, abdominal pain. LFTs were
205
+ within normal limits. We started him on PO PPI BID x 6 weeks
206
+ with plans for an outpatient EGD for further work-up. He is to
207
+ avoid NSAIDs. He did not experience any hemetemesis while in
208
+ the hospital.
209
+ .
210
+ # Code: Full code
211
+
212
+
213
+ Medications on Admission:
214
+ ERGOCALCIFEROL (VITAMIN D2) [DRISDOL] - (Prescribed by Other
215
+ Provider) - 50,000 unit Capsule - 1 Capsule(s) by mouth weekly
216
+ .
217
+ Medications - OTC
218
+ ACETAMINOPHEN [TYLENOL] - (Prescribed by Other Provider) -
219
+ 325mg Tablet - 1 Tablet(s) by mouth prn
220
+ CALCIUM CARBONATE - (Prescribed by Other Provider) - 500 mg
221
+ (1,250 mg) Tablet - 1 Tablet(s) by mouth twice a day
222
+
223
+ Levofloxacin
224
+ Doxycycline
225
+
226
+ Discharge Medications:
227
+ 1. Vitamin D 50,000 unit Capsule Sig: One (1) Capsule PO once a
228
+ week.
229
+ 2. pantoprazole 40 mg Tablet, Delayed Release (E.C.) Sig: One
230
+ (1) Tablet, Delayed Release (E.C.) PO Q12H (every 12 hours).
231
+ Disp:*90 Tablet, Delayed Release (E.C.)(s)* Refills:*3*
232
+ 3. calcium carbonate 500 mg (1,250 mg) Tablet Sig: One (1)
233
+ Tablet PO twice a day.
234
+ 4. vancomycin in 0.9% sodium Cl 1.25 gram/250 mL Solution Sig:
235
+ One (1) rec solution Intravenous every twelve (12) hours for 26
236
+ doses: continue until he sees infectious disease in follow-up on
237
+ ___.
238
+ 5. acetaminophen 500 mg Tablet Sig: ___ Tablets PO Q6H (every 6
239
+ hours) as needed for headache: maximum of 4 grams daily.
240
+ 6. oxycodone 5 mg Tablet Sig: One (1) Tablet PO every six (6)
241
+ hours as needed for pain.
242
+ 7. bisacodyl 5 mg Tablet, Delayed Release (E.C.) Sig: Two (2)
243
+ Tablet, Delayed Release (E.C.) PO DAILY (Daily) as needed for
244
+ constipation.
245
+ 8. senna 8.6 mg Tablet Sig: One (1) Tablet PO BID (2 times a
246
+ day) as needed for constipation.
247
+
248
+
249
+ Discharge Disposition:
250
+ Extended Care
251
+
252
+ Facility:
253
+ ___
254
+
255
+ Discharge Diagnosis:
256
+ Primary- Cellulitis
257
+
258
+ Secondary- Chronic chest wall infection with phlegmon s/p
259
+ debridement and drainage in ___
260
+
261
+
262
+ Discharge Condition:
263
+ Mental Status: Clear and coherent.
264
+ Level of Consciousness: Alert and interactive.
265
+ Activity Status: Ambulatory - Independent.
266
+
267
+
268
+ Discharge Instructions:
269
+ You were admitted to the hospital with a worsening skin
270
+ infection around your previous wound. While here, you received
271
+ IV antibiotics and did well. You are being discharged with
272
+ plans to continue IV vancomycin (an antibiotic) to continue
273
+ until you follow-up with the infectious disease doctors ___
274
+ ___ at 2:30pm. Please make sure to follow-up with them to
275
+ monitor your progress on the medication.
276
+
277
+ The following changes were made to your medications:
278
+ 1. Please continue vancomycin 1.25gm IV every 12 hours until
279
+ ___.
280
+ 2. Please start taking pantoprazole 40mg by mouth twice a day
281
+ for 6 weeks.
282
+ 3. Please avoid advil and other NSAIDs for pain control.
283
+
284
+ Please follow-up with ID and your PCP on discharge.
285
+
286
+ Followup Instructions:
287
+ ___
288
+
289
+
290
+ [RADIOLOGY] CHEST
291
+
292
+ HISTORY: Line placement, check PICC tip.
293
+
294
+ One view. Comparison with the previous study done ___. The lungs are
295
+ clear except for minimal streaky density consistent with subsegmental
296
+ atelectasis or scarring. The left costophrenic sulcus is mildly blunted, as
297
+ before. The heart and mediastinal structures are unchanged. A PICC line has
298
+ been inserted on the right. It terminates in the mid superior vena cava.
299
+
300
+ IMPRESSION: Line placement as described.
301
+
302
+
303
+ [RADIOLOGY] HISTORY: ___ man with left chest wall phlegmon, status post
304
+ debridement. Now with worsening cellulitis around the incision, concerning
305
+ for underlying fluid collection.
306
+
307
+ COMPARISON: Limited comparison from pre-procedural CT chest on ___.
308
+
309
+ FINDINGS: Direct ultrasound examination was performed on the left chest wall.
310
+ There is a predominantly anechoic fluid collection within the left anterior
311
+ chest wall approximately 1 cm deep from the skin surface, measuring 2.7 x 0.4
312
+ x 1.9 cm (TRV x AP x CC), without internal vascularity.
313
+
314
+ IMPRESSION: Left chest-wall fluid collection; infection of this collection is
315
+ not excluded on the basis of this exam.
316
+
317
+
318
+ [RADIOLOGY] CLINICAL INFORMATION: ___ male with severe onset headache. Evaluate
319
+ for bleed.
320
+
321
+ TECHNIQUE: Axial images were acquired of the head without contrast.
322
+
323
+ COMPARISON: None available.
324
+
325
+ FINDINGS: There is no acute intracranial hemorrhage, mass effect, or
326
+ extra-axial collection. The ventricles and sulci are normal in size and
327
+ configuration. Gray-white differentiation is preserved throughout. The
328
+ visualized portions of the orbits are unremarkable. The mastoid air cells are
329
+ clear bilaterally, as are the visualized paranasal sinuses.
330
+
331
+ IMPRESSION: No acute intracranial process.
332
+
333
+ PROCEDURES (readable):
334
+ - 3893 (ICD-9) — Venous catheterization, not elsewhere classified
335
+
336
+ DIAGNOSES (readable):
337
+ - 99859 (ICD-9) — Other postoperative infection
338
+ - 6822 (ICD-9) — Cellulitis and abscess of trunk
339
+ - 5780 (ICD-9) — Hematemesis
340
+ - 34690 (ICD-9) — Migraine, unspecified, without mention of intractable migraine without mention of status migrainosus
341
+ - V600 (ICD-9) — Lack of housing
342
+ - V620 (ICD-9) — Unemployment
343
+
344
+ LAB ITEMS (readable, deduped):
345
+ - Alanine Aminotransferase (ALT) (Item 50861)
346
+ - Alkaline Phosphatase (Item 50863)
347
+ - Anion Gap (Item 50868)
348
+ - Asparate Aminotransferase (AST) (Item 50878)
349
+ - Bicarbonate (Item 50882)
350
+ - Bilirubin, Total (Item 50885)
351
+ - Calcium, Total (Item 50893)
352
+ - Chloride (Item 50902)
353
+ - Creatinine (Item 50912)
354
+ - Estimated GFR (MDRD equation) (Item 50920)
355
+ - Glucose (Item 50931)
356
+ - Hematocrit (Item 51221)
357
+ - Hemoglobin (Item 51222)
358
+ - MCH (Item 51248)
359
+ - MCHC (Item 51249)
360
+ - MCV (Item 51250)
361
+ - Magnesium (Item 50960)
362
+ - Phosphate (Item 50970)
363
+ - Platelet Count (Item 51265)
364
+ - Potassium (Item 50971)
365
+ - RDW (Item 51277)
366
+ - Red Blood Cells (Item 51279)
367
+ - Red Top Hold (Item 50979)
368
+ - Sodium (Item 50983)
369
+ - Urea Nitrogen (Item 51006)
370
+ - Vancomycin (Item 51009)
371
+ - White Blood Cells (Item 51301)
summaries/subject_14899292_hadm_24253579_summary.txt ADDED
@@ -0,0 +1,68 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ **PRE-OPERATIVE SUMMARY INPUT (SINGLE ADMISSION)**
2
+
3
+ **Patient Information:**
4
+
5
+ * Age: 57
6
+ * Gender: Male
7
+ * Admission ID: 24253579
8
+ * Admission Type: Direct Emergency
9
+ * Admission Location: Clinic Referral
10
+ * Discharge Location: Skilled Nursing Facility
11
+ * Insurance: Other
12
+ * Race: White
13
+ * Marital Status: Single
14
+ * Language: English
15
+
16
+ **Procedures:**
17
+
18
+ * ICD-9: 3893 (Venous catheterization, not elsewhere classified)
19
+
20
+ **Diagnoses:**
21
+
22
+ * ICD-9: 99859 (Other postoperative infection)
23
+ * ICD-9: 6822 (Cellulitis and abscess of trunk)
24
+ * ICD-9: 5780 (Hematemesis)
25
+ * ICD-9: 34690 (Migraine, unspecified)
26
+ * ICD-9: V600 (Lack of housing)
27
+ * ICD-9: V620 (Unemployment)
28
+
29
+ **Laboratory Results:**
30
+
31
+ * Total laboratory events: 130
32
+ * Most frequent lab tests:
33
+ + Item ID 50868: 7 measurements (Anion Gap)
34
+ + Item ID 50882: 7 measurements (Bicarbonate)
35
+ + Item ID 50902: 7 measurements (Chloride)
36
+ + Item ID 50912: 7 measurements (Creatinine)
37
+ + Item ID 50931: 7 measurements (Glucose)
38
+ + Item ID 51221: 7 measurements (Hematocrit)
39
+ + Item ID 51222: 7 measurements (Hemoglobin)
40
+ + Item ID 51248: 7 measurements (MCH)
41
+ + Item ID 51249: 7 measurements (MCHC)
42
+ + Item ID 51250: 7 measurements (MCV)
43
+ + Item ID 50960: 7 measurements (Magnesium)
44
+ + Item ID 50970: 7 measurements (Phosphate)
45
+ + Item ID 51265: 7 measurements (Platelet Count)
46
+ + Item ID 50971: 7 measurements (Potassium)
47
+ + Item ID 51277: 7 measurements (RDW)
48
+ + Item ID 51279: 7 measurements (Red Blood Cells)
49
+ + Item ID 50979: 7 measurements (Red Top Hold)
50
+ + Item ID 50983: 7 measurements (Sodium)
51
+ + Item ID 51006: 7 measurements (Urea Nitrogen)
52
+ + Item ID 51009: 7 measurements (Vancomycin)
53
+
54
+ **Clinical Notes:**
55
+
56
+ * The patient was admitted with a worsening skin infection around his previous wound.
57
+ * He received IV antibiotics and did well.
58
+ * The patient is being discharged with plans to continue IV vancomycin to monitor his progress.
59
+ * The patient has a history of chronic infection with phlegmon of his left chest wall, s/p debridement and drainage.
60
+ * The patient has a history of migraines and was recently hospitalized with nausea, vomiting, and an episode of small volume hematemesis.
61
+ * The patient has a history of chronic infection with phlegmon of his left chest wall, s/p debridement and drainage.
62
+ * The patient has a history of migraines and was recently hospitalized with nausea, vomiting, and an episode of small volume hematemesis.
63
+
64
+ **Medications:**
65
+
66
+ * ERGOCALCIFEROL (VITAMIN D2) [DRISDOL] - 50,000 unit Capsule - 1 Capsule(s) by mouth weekly
67
+ * ACETAMINOPHEN [TYLENOL] - 325mg Tablet - 1 Tablet(s) by mouth prn
68
+ * CALCIUM CARBONATE - 500 mg (1,250 mg) Tablet - 1 Tablet(s)
summaries/subject_14899292_hadm_26510460_input.txt ADDED
@@ -0,0 +1,230 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ PRE-OPERATIVE SUMMARY INPUT (SINGLE ADMISSION):
2
+
3
+ PATIENT:
4
+ - Age: 57
5
+ - Gender: M
6
+
7
+ ADMISSION:
8
+ - Admission ID: 26510460
9
+ - Admission Type: URGENT
10
+ - Admission Location: TRANSFER FROM HOSPITAL
11
+ - Discharge Location: HOME HEALTH CARE
12
+ - Insurance: Other
13
+ - Race: WHITE
14
+ - Marital Status: SINGLE
15
+ - Language: ENGLISH
16
+
17
+ PROCEDURES (1 total):
18
+ - 8605 (ICD-9)
19
+
20
+ DIAGNOSES (3 total):
21
+ - 6822 (ICD-9)
22
+ - V600 (ICD-9)
23
+ - 9117 (ICD-9)
24
+
25
+ LABORATORY RESULTS:
26
+ - Item ID 50868: 1 measurements, 2150-12-27 23:03:00 to 2150-12-27 23:03:00
27
+ - Item ID 50882: 1 measurements, 2150-12-27 23:03:00 to 2150-12-27 23:03:00
28
+ - Item ID 50893: 1 measurements, 2150-12-27 23:03:00 to 2150-12-27 23:03:00
29
+ - Item ID 50902: 1 measurements, 2150-12-27 23:03:00 to 2150-12-27 23:03:00
30
+ - Item ID 50912: 1 measurements, 2150-12-27 23:03:00 to 2150-12-27 23:03:00
31
+ - Item ID 50920: 1 measurements, 2150-12-27 23:03:00 to 2150-12-27 23:03:00
32
+ - Item ID 50931: 1 measurements, 2150-12-27 23:03:00 to 2150-12-27 23:03:00
33
+ - Item ID 50960: 1 measurements, 2150-12-27 23:03:00 to 2150-12-27 23:03:00
34
+ - Item ID 50970: 1 measurements, 2150-12-27 23:03:00 to 2150-12-27 23:03:00
35
+ - Item ID 50971: 1 measurements, 2150-12-27 23:03:00 to 2150-12-27 23:03:00
36
+ - Item ID 50983: 1 measurements, 2150-12-27 23:03:00 to 2150-12-27 23:03:00
37
+ - Item ID 51006: 1 measurements, 2150-12-27 23:03:00 to 2150-12-27 23:03:00
38
+ - Item ID 51221: 1 measurements, 2150-12-27 23:03:00 to 2150-12-27 23:03:00
39
+ - Item ID 51222: 1 measurements, 2150-12-27 23:03:00 to 2150-12-27 23:03:00
40
+ - Item ID 51237: 1 measurements, 2150-12-27 23:03:00 to 2150-12-27 23:03:00
41
+ - Item ID 51248: 1 measurements, 2150-12-27 23:03:00 to 2150-12-27 23:03:00
42
+ - Item ID 51249: 1 measurements, 2150-12-27 23:03:00 to 2150-12-27 23:03:00
43
+ - Item ID 51250: 1 measurements, 2150-12-27 23:03:00 to 2150-12-27 23:03:00
44
+ - Item ID 51265: 1 measurements, 2150-12-27 23:03:00 to 2150-12-27 23:03:00
45
+ - Item ID 51274: 1 measurements, 2150-12-27 23:03:00 to 2150-12-27 23:03:00
46
+ - Item ID 51275: 1 measurements, 2150-12-27 23:03:00 to 2150-12-27 23:03:00
47
+ - Item ID 51277: 1 measurements, 2150-12-27 23:03:00 to 2150-12-27 23:03:00
48
+ - Item ID 51279: 1 measurements, 2150-12-27 23:03:00 to 2150-12-27 23:03:00
49
+ - Item ID 51301: 1 measurements, 2150-12-27 23:03:00 to 2150-12-27 23:03:00
50
+
51
+ CLINICAL NOTES:
52
+ [DISCHARGE NOTE]
53
+ Name: ___ Unit No: ___
54
+
55
+ Admission Date: ___ Discharge Date: ___
56
+
57
+ Date of Birth: ___ Sex: M
58
+
59
+ Service: SURGERY
60
+
61
+ Allergies:
62
+ Clindamycin
63
+
64
+ Attending: ___.
65
+
66
+ Chief Complaint:
67
+ drainage from chest wound
68
+
69
+ Major Surgical or Invasive Procedure:
70
+ ___
71
+ Left chest wall foreign body removal x4 with
72
+ fluoroscopic guidance and interpretation.
73
+
74
+
75
+ History of Present Illness:
76
+ Mr. ___ is a ___ yo M w/ history of chest wall abscess
77
+ in ___ w/ multiple courses of antibiotics and s/p I&D and
78
+ removal of a foreign body in ___ at ___ who now is
79
+ transferred from ___ for recurrent abscess. He
80
+ presented to ___ yesterday after feeling a "pop"
81
+ on his anterior chest wall and noticing bloody drainage from his
82
+ wound. He was started on vancomycin and wound culture showed
83
+ GPCs. His WBC was 7.7. His CT scan showed inflammatory changes
84
+ but no abscess. He was switched to cefazolin and transferred to
85
+ ___ for further management. Other than tenderness over the L
86
+ chest wall, he denies fevers or chills, nausea or vomiting.
87
+
88
+
89
+ Past Medical History:
90
+ Phlegmon of his left chest wall s/p debridement on ___ and
91
+ closure on ___
92
+ Surgical reconstruction of right upper extremity after horse
93
+ accident
94
+ Surgery on left bicep after horse accident
95
+
96
+ Social History:
97
+ ___
98
+ Family History:
99
+ Non contributory
100
+
101
+ Physical Exam:
102
+ Temp 97.7 BP 145/101 HR 64 RR 18 O2 sat 98% RA
103
+ GEN: A&O, NAD
104
+ HEENT: No scleral icterus, mucus membranes moist
105
+ CV: RRR, No M/G/R
106
+ PULM: Clear to auscultation b/l, No W/R/R
107
+ ABD: Soft, nondistended, nontender, no rebound or guarding, scar
108
+ in LUQ
109
+ DRE: deferred
110
+ Ext: No ___ edema, ___ warm and well perfused
111
+ Skin: L chest wall induration, erythema with wound opening,
112
+ spontaneously draining. Tender and warm to palpation.
113
+
114
+
115
+ Pertinent Results:
116
+ ___ 11:03PM WBC-6.8 RBC-4.87 HGB-15.1 HCT-44.2 MCV-91
117
+ MCH-31.1 MCHC-34.2 RDW-13.0
118
+ ___ 11:03PM PLT COUNT-269
119
+ ___ 11:03PM ___ PTT-24.9 ___
120
+ ___ 11:03PM GLUCOSE-135* UREA N-7 CREAT-0.8 SODIUM-135
121
+ POTASSIUM-3.8 CHLORIDE-102 TOTAL CO2-24 ANION GAP-___: Inflammatory process involving left pectoral
122
+ muscle and L anterior chest wall with no soft tissue gas
123
+ densities or well-defined measurable fluid collections to
124
+ suggest
125
+ drainable abscess.
126
+
127
+ ___ CXR :
128
+ The interval, the metallic foreign bodies have been removed. On
129
+ the current image there is no evidence of residual foreign
130
+ bodies. No
131
+ evidence of complications such as pneumothorax. Borderline size
132
+ of the
133
+ cardiac silhouette. No pleural effusions. No pulmonary edema.
134
+
135
+
136
+
137
+ Brief Hospital Course:
138
+ Mr. ___ was evaluated by the Acute Care team in the
139
+ Emergency Room and was admitted to the hospital for I&D of this
140
+ chest wall abscess. He was taken to the Operating Room on
141
+ ___ and Fluoro was also used to assure that all of the
142
+ foreign bodies were removed. These appeared to be opened paper
143
+ clips. He tolerated the procedure well and returned to the PACU
144
+ ion stable condition.
145
+
146
+ Following transfer to the Surgical floor he underwent dressing
147
+ changes and all 3 wounds were clean at the base with no
148
+ cellulitis. He was tolerating a regular diet and ambulating
149
+ without difficulty. He remained afebrile with a WBC of 6K.
150
+
151
+ The Psychiatric service was consulted for a full assessment and
152
+ Mr. ___ agreed to speak with them but unfortunately he
153
+ changed his mind when the team arrived. They did leave some
154
+ information for him to obtain outpatient treatment and phone
155
+ numbers were provided.
156
+
157
+ He was discharged to home on ___ with ___ services for
158
+ dressing changes.
159
+
160
+ Medications on Admission:
161
+ tylenol ___ q4h prn
162
+
163
+
164
+ Discharge Medications:
165
+ 1. oxycodone 5 mg Tablet Sig: ___ Tablets PO Q4H (every 4 hours)
166
+ as needed for pain.
167
+ Disp:*40 Tablet(s)* Refills:*0*
168
+ 2. Colace 100 mg Capsule Sig: One (1) Capsule PO twice a day.
169
+ 3. acetaminophen 325 mg Tablet Sig: Two (2) Tablet PO Q6H (every
170
+ 6 hours).
171
+ 4. cephalexin 500 mg Capsule Sig: One (1) Capsule PO Q6H (every
172
+ 6 hours): thru ___.
173
+ Disp:*10 Capsule(s)* Refills:*2*
174
+
175
+
176
+ Discharge Disposition:
177
+ Home With Service
178
+
179
+ Facility:
180
+ ___
181
+
182
+ Discharge Diagnosis:
183
+ Left chest wall foreign body.
184
+
185
+
186
+ Discharge Condition:
187
+ Mental Status: Clear and coherent.
188
+ Level of Consciousness: Alert and interactive.
189
+ Activity Status: Ambulatory - Independent.
190
+
191
+
192
+ Discharge Instructions:
193
+ * You were admitted to the hospital with pain and redness on
194
+ your chest due to foreign bodies under the skin. You were taken
195
+ to the Operating Room and paper clips were removed from 3
196
+ seperate areas.
197
+ * The wounds will need to heal from inside out therefore you
198
+ will have to have dressing changes daily. The ___ will help you
199
+ with that.
200
+ * The Psychiatric service came by to see you with the intention
201
+ of helping you sort out why this is happening but unfortunately
202
+ you did not want their help. We still recommend that you get
203
+ some outpatient psychiatric follow up such as BEST
204
+ ___ or Arbour Psychiatric Intake ___.
205
+ * From a medical tandpoint, you shpuld take your temperature
206
+ twice a day, notify us if it's > 100.5 on 2 occasions or if
207
+ there is any increased drainage or increased redness around your
208
+ wounds.
209
+
210
+ Followup Instructions:
211
+ ___
212
+
213
+ [RADIOLOGY NOTE]
214
+ FLUOROSCOPIC RADIOGRAPHIC IMAGES
215
+
216
+ REPORT: Static fluoroscopic images acquired in the absence of radiologist
217
+ show linear metallic foreign body removal.
218
+
219
+ [RADIOLOGY NOTE]
220
+ CHEST RADIOGRAPH
221
+
222
+ INDICATION: Foreign bodies, status post removal.
223
+
224
+ COMPARISON: Fluoroscopic examination from ___. Older chest
225
+ radiographs from ___ as well as a chest CT from ___.
226
+
227
+ FINDINGS: The interval, the metallic foreign bodies have been removed. On
228
+ the current image there is no evidence of residual foreign bodies. No
229
+ evidence of complications such as pneumothorax. Borderline size of the
230
+ cardiac silhouette. No pleural effusions. No pulmonary edema.
summaries/subject_14899292_hadm_26510460_model_input.txt ADDED
@@ -0,0 +1,247 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ PRE-OPERATIVE SUMMARY INPUT (SINGLE ADMISSION):
2
+
3
+ PATIENT:
4
+ - Age: 57
5
+ - Gender: M
6
+
7
+ ADMISSION:
8
+ - Admission ID: 26510460
9
+ - Admission Type: URGENT
10
+ - Admission Location: TRANSFER FROM HOSPITAL
11
+ - Discharge Location: HOME HEALTH CARE
12
+ - Insurance: Other
13
+ - Race: WHITE
14
+ - Marital Status: SINGLE
15
+ - Language: ENGLISH
16
+
17
+ PROCEDURES (1 total):
18
+ 1. ICD-9: 8605
19
+
20
+ DIAGNOSES (3 total):
21
+ 1. ICD-9: 6822
22
+ 2. ICD-9: V600
23
+ 3. ICD-9: 9117
24
+
25
+ LABORATORY RESULTS:
26
+ Total laboratory events: 24
27
+ Most frequent lab tests:
28
+ - Item ID 50868: 1 measurements
29
+ - Item ID 50882: 1 measurements
30
+ - Item ID 50893: 1 measurements
31
+ - Item ID 50902: 1 measurements
32
+ - Item ID 50912: 1 measurements
33
+
34
+ CLINICAL NOTES:
35
+ [DISCHARGE]
36
+ Name: ___ Unit No: ___
37
+
38
+ Admission Date: ___ Discharge Date: ___
39
+
40
+ Date of Birth: ___ Sex: M
41
+
42
+ Service: SURGERY
43
+
44
+ Allergies:
45
+ Clindamycin
46
+
47
+ Attending: ___.
48
+
49
+ Chief Complaint:
50
+ drainage from chest wound
51
+
52
+ Major Surgical or Invasive Procedure:
53
+ ___
54
+ Left chest wall foreign body removal x4 with
55
+ fluoroscopic guidance and interpretation.
56
+
57
+
58
+ History of Present Illness:
59
+ Mr. ___ is a ___ yo M w/ history of chest wall abscess
60
+ in ___ w/ multiple courses of antibiotics and s/p I&D and
61
+ removal of a foreign body in ___ at ___ who now is
62
+ transferred from ___ for recurrent abscess. He
63
+ presented to ___ yesterday after feeling a "pop"
64
+ on his anterior chest wall and noticing bloody drainage from his
65
+ wound. He was started on vancomycin and wound culture showed
66
+ GPCs. His WBC was 7.7. His CT scan showed inflammatory changes
67
+ but no abscess. He was switched to cefazolin and transferred to
68
+ ___ for further management. Other than tenderness over the L
69
+ chest wall, he denies fevers or chills, nausea or vomiting.
70
+
71
+
72
+ Past Medical History:
73
+ Phlegmon of his left chest wall s/p debridement on ___ and
74
+ closure on ___
75
+ Surgical reconstruction of right upper extremity after horse
76
+ accident
77
+ Surgery on left bicep after horse accident
78
+
79
+ Social History:
80
+ ___
81
+ Family History:
82
+ Non contributory
83
+
84
+ Physical Exam:
85
+ Temp 97.7 BP 145/101 HR 64 RR 18 O2 sat 98% RA
86
+ GEN: A&O, NAD
87
+ HEENT: No scleral icterus, mucus membranes moist
88
+ CV: RRR, No M/G/R
89
+ PULM: Clear to auscultation b/l, No W/R/R
90
+ ABD: Soft, nondistended, nontender, no rebound or guarding, scar
91
+ in LUQ
92
+ DRE: deferred
93
+ Ext: No ___ edema, ___ warm and well perfused
94
+ Skin: L chest wall induration, erythema with wound opening,
95
+ spontaneously draining. Tender and warm to palpation.
96
+
97
+
98
+ Pertinent Results:
99
+ ___ 11:03PM WBC-6.8 RBC-4.87 HGB-15.1 HCT-44.2 MCV-91
100
+ MCH-31.1 MCHC-34.2 RDW-13.0
101
+ ___ 11:03PM PLT COUNT-269
102
+ ___ 11:03PM ___ PTT-24.9 ___
103
+ ___ 11:03PM GLUCOSE-135* UREA N-7 CREAT-0.8 SODIUM-135
104
+ POTASSIUM-3.8 CHLORIDE-102 TOTAL CO2-24 ANION GAP-___: Inflammatory process involving left pectoral
105
+ muscle and L anterior chest wall with no soft tissue gas
106
+ densities or well-defined measurable fluid collections to
107
+ suggest
108
+ drainable abscess.
109
+
110
+ ___ CXR :
111
+ The interval, the metallic foreign bodies have been removed. On
112
+ the current image there is no evidence of residual foreign
113
+ bodies. No
114
+ evidence of complications such as pneumothorax. Borderline size
115
+ of the
116
+ cardiac silhouette. No pleural effusions. No pulmonary edema.
117
+
118
+
119
+
120
+ Brief Hospital Course:
121
+ Mr. ___ was evaluated by the Acute Care team in the
122
+ Emergency Room and was admitted to the hospital for I&D of this
123
+ chest wall abscess. He was taken to the Operating Room on
124
+ ___ and Fluoro was also used to assure that all of the
125
+ foreign bodies were removed. These appeared to be opened paper
126
+ clips. He tolerated the procedure well and returned to the PACU
127
+ ion stable condition.
128
+
129
+ Following transfer to the Surgical floor he underwent dressing
130
+ changes and all 3 wounds were clean at the base with no
131
+ cellulitis. He was tolerating a regular diet and ambulating
132
+ without difficulty. He remained afebrile with a WBC of 6K.
133
+
134
+ The Psychiatric service was consulted for a full assessment and
135
+ Mr. ___ agreed to speak with them but unfortunately he
136
+ changed his mind when the team arrived. They did leave some
137
+ information for him to obtain outpatient treatment and phone
138
+ numbers were provided.
139
+
140
+ He was discharged to home on ___ with ___ services for
141
+ dressing changes.
142
+
143
+ Medications on Admission:
144
+ tylenol ___ q4h prn
145
+
146
+
147
+ Discharge Medications:
148
+ 1. oxycodone 5 mg Tablet Sig: ___ Tablets PO Q4H (every 4 hours)
149
+ as needed for pain.
150
+ Disp:*40 Tablet(s)* Refills:*0*
151
+ 2. Colace 100 mg Capsule Sig: One (1) Capsule PO twice a day.
152
+ 3. acetaminophen 325 mg Tablet Sig: Two (2) Tablet PO Q6H (every
153
+ 6 hours).
154
+ 4. cephalexin 500 mg Capsule Sig: One (1) Capsule PO Q6H (every
155
+ 6 hours): thru ___.
156
+ Disp:*10 Capsule(s)* Refills:*2*
157
+
158
+
159
+ Discharge Disposition:
160
+ Home With Service
161
+
162
+ Facility:
163
+ ___
164
+
165
+ Discharge Diagnosis:
166
+ Left chest wall foreign body.
167
+
168
+
169
+ Discharge Condition:
170
+ Mental Status: Clear and coherent.
171
+ Level of Consciousness: Alert and interactive.
172
+ Activity Status: Ambulatory - Independent.
173
+
174
+
175
+ Discharge Instructions:
176
+ * You were admitted to the hospital with pain and redness on
177
+ your chest due to foreign bodies under the skin. You were taken
178
+ to the Operating Room and paper clips were removed from 3
179
+ seperate areas.
180
+ * The wounds will need to heal from inside out therefore you
181
+ will have to have dressing changes daily. The ___ will help you
182
+ with that.
183
+ * The Psychiatric service came by to see you with the intention
184
+ of helping you sort out why this is happening but unfortunately
185
+ you did not want their help. We still recommend that you get
186
+ some outpatient psychiatric follow up such as BEST
187
+ ___ or Arbour Psychiatric Intake ___.
188
+ * From a medical tandpoint, you shpuld take your temperature
189
+ twice a day, notify us if it's > 100.5 on 2 occasions or if
190
+ there is any increased drainage or increased redness around your
191
+ wounds.
192
+
193
+ Followup Instructions:
194
+ ___
195
+
196
+
197
+ [RADIOLOGY] FLUOROSCOPIC RADIOGRAPHIC IMAGES
198
+
199
+ REPORT: Static fluoroscopic images acquired in the absence of radiologist
200
+ show linear metallic foreign body removal.
201
+
202
+
203
+ [RADIOLOGY] CHEST RADIOGRAPH
204
+
205
+ INDICATION: Foreign bodies, status post removal.
206
+
207
+ COMPARISON: Fluoroscopic examination from ___. Older chest
208
+ radiographs from ___ as well as a chest CT from ___.
209
+
210
+ FINDINGS: The interval, the metallic foreign bodies have been removed. On
211
+ the current image there is no evidence of residual foreign bodies. No
212
+ evidence of complications such as pneumothorax. Borderline size of the
213
+ cardiac silhouette. No pleural effusions. No pulmonary edema.
214
+
215
+ PROCEDURES (readable):
216
+ - 8605 (ICD-9) — Incision with removal of foreign body or device from skin and subcutaneous tissue
217
+
218
+ DIAGNOSES (readable):
219
+ - 6822 (ICD-9) — Cellulitis and abscess of trunk
220
+ - V600 (ICD-9) — Lack of housing
221
+ - 9117 (ICD-9) — Superficial foreign body (splinter) of trunk, without major open wound, infected
222
+
223
+ LAB ITEMS (readable, deduped):
224
+ - Anion Gap (Item 50868)
225
+ - Bicarbonate (Item 50882)
226
+ - Calcium, Total (Item 50893)
227
+ - Chloride (Item 50902)
228
+ - Creatinine (Item 50912)
229
+ - Estimated GFR (MDRD equation) (Item 50920)
230
+ - Glucose (Item 50931)
231
+ - Hematocrit (Item 51221)
232
+ - Hemoglobin (Item 51222)
233
+ - INR(PT) (Item 51237)
234
+ - MCH (Item 51248)
235
+ - MCHC (Item 51249)
236
+ - MCV (Item 51250)
237
+ - Magnesium (Item 50960)
238
+ - PT (Item 51274)
239
+ - PTT (Item 51275)
240
+ - Phosphate (Item 50970)
241
+ - Platelet Count (Item 51265)
242
+ - Potassium (Item 50971)
243
+ - RDW (Item 51277)
244
+ - Red Blood Cells (Item 51279)
245
+ - Sodium (Item 50983)
246
+ - Urea Nitrogen (Item 51006)
247
+ - White Blood Cells (Item 51301)
summaries/subject_14899292_hadm_26510460_summary.txt ADDED
@@ -0,0 +1,79 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ **PRE-OPERATIVE SUMMARY**
2
+
3
+ **Patient Information**
4
+
5
+ * Name: [Not provided]
6
+ * Age: 57
7
+ * Gender: Male
8
+ * Admission ID: 26510460
9
+ * Admission Type: Urgent
10
+ * Admission Location: Transfer from hospital
11
+ * Discharge Location: Home Health Care
12
+ * Insurance: Other
13
+ * Race: White
14
+ * Marital Status: Single
15
+ * Language: English
16
+
17
+ **Diagnosis**
18
+
19
+ * ICD-9: 8605 (Incision with removal of foreign body or device from skin and subcutaneous tissue)
20
+ * ICD-9: 6822 (Cellulitis and abscess of trunk)
21
+ * ICD-9: V600 (Lack of housing)
22
+ * ICD-9: 9117 (Superficial foreign body of trunk, without major open wound, infected)
23
+
24
+ **Procedure**
25
+
26
+ * 8605 (ICD-9) - Incision with removal of foreign body or device from skin and subcutaneous tissue
27
+
28
+ **Laboratory Results**
29
+
30
+ * Total laboratory events: 24
31
+ * Most frequent lab tests:
32
+ + Item ID 50868: Anion Gap
33
+ + Item ID 50882: Bicarbonate
34
+ + Item ID 50893: Calcium, Total
35
+ + Item ID 50902: Chloride
36
+ + Item ID 50912: Creatinine
37
+ + Item ID 50920: Estimated GFR (MDRD equation)
38
+ + Item ID 50931: Glucose
39
+ + Item ID 51221: Hematocrit
40
+ + Item ID 51222: Hemoglobin
41
+ + Item ID 51237: INR(PT)
42
+ + Item ID 51248: MCH
43
+ + Item ID 51249: MCHC
44
+ + Item ID 51250: MCV
45
+ + Item ID 50960: Magnesium
46
+ + Item ID 51274: PT
47
+ + Item ID 51275: PTT
48
+ + Item ID 51277: RDW
49
+ + Item ID 51279: Red Blood Cells
50
+ + Item ID 50983: Sodium
51
+ + Item ID 51006: Urea Nitrogen
52
+ + Item ID 51301: White Blood Cells
53
+
54
+ **Clinical Notes**
55
+
56
+ * The patient presented with drainage from a chest wound, which was diagnosed as a foreign body under the skin.
57
+ * The patient had a history of chest wall abscess, multiple courses of antibiotics, and surgical removal of a foreign body in the past.
58
+ * The patient was started on vancomycin and wound culture showed GPCs (Gram-positive cocci). The WBC was 7.7, and the CT scan showed inflammatory changes but no abscess.
59
+ * The patient was switched to cefazolin and transferred to the surgical floor for further management.
60
+ * The patient tolerated the procedure well and returned to the PACU in stable condition.
61
+ * The patient underwent dressing changes and all 3 wounds were clean at the base with no cellulitis.
62
+ * The patient was discharged to home with services for dressing changes.
63
+
64
+ **Medications**
65
+
66
+ * Tylenol (acetaminophen) 325 mg Tablet Sig: every 4 hours as needed for pain
67
+ * Oxycodone 5 mg Tablet Sig: every 4 hours as needed for pain
68
+ * Colace 100 mg Capsule Sig: twice a day
69
+ * Cephalexin 500 mg Capsule Sig: every 6 hours
70
+
71
+ **Discharge Instructions**
72
+
73
+ * The patient should have dressing changes daily.
74
+ * The patient should take their temperature twice a day and notify the hospital if it's > 100.5 on 2 occasions or if there is any increased drainage or increased redness around the wounds.
75
+ * The patient should get some outpatient psychiatric follow-up, such as BEST or Arbour Psychiatric Intake.
76
+
77
+ **Follow-up Instructions**
78
+
79
+ * The
summaries/subject_16139570_hadm_20366586_input.txt ADDED
@@ -0,0 +1,379 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ PRE-OPERATIVE SUMMARY INPUT (SINGLE ADMISSION):
2
+
3
+ PATIENT:
4
+ - Age: 91
5
+ - Gender: F
6
+
7
+ ADMISSION:
8
+ - Admission ID: 20366586
9
+ - Admission Type: EW EMER.
10
+ - Admission Location: EMERGENCY ROOM
11
+ - Discharge Location: SKILLED NURSING FACILITY
12
+ - Insurance: Other
13
+ - Race: ASIAN
14
+ - Marital Status: WIDOWED
15
+ - Language: ?
16
+
17
+ PROCEDURES (1 total):
18
+ - 8659 (ICD-9)
19
+
20
+ DIAGNOSES (5 total):
21
+ - 8730 (ICD-9)
22
+ - E8889 (ICD-9)
23
+ - 2720 (ICD-9)
24
+ - 4019 (ICD-9)
25
+ - 2948 (ICD-9)
26
+
27
+ LABORATORY RESULTS:
28
+ - Item ID 50822: 1 measurements, 2173-06-20 23:58:00 to 2173-06-20 23:58:00
29
+ - Item ID 50868: 1 measurements, 2173-06-20 23:50:00 to 2173-06-20 23:50:00
30
+ - Item ID 50882: 1 measurements, 2173-06-20 23:50:00 to 2173-06-20 23:50:00
31
+ - Item ID 50893: 1 measurements, 2173-06-20 23:50:00 to 2173-06-20 23:50:00
32
+ - Item ID 50902: 1 measurements, 2173-06-20 23:50:00 to 2173-06-20 23:50:00
33
+ - Item ID 50910: 2 measurements, 2173-06-20 23:50:00 to 2173-06-21 10:40:00
34
+ - Item ID 50911: 2 measurements, 2173-06-20 23:50:00 to 2173-06-21 10:40:00
35
+ - Item ID 50912: 1 measurements, 2173-06-20 23:50:00 to 2173-06-20 23:50:00
36
+ - Item ID 50920: 1 measurements, 2173-06-20 23:50:00 to 2173-06-20 23:50:00
37
+ - Item ID 50931: 1 measurements, 2173-06-20 23:50:00 to 2173-06-20 23:50:00
38
+ - Item ID 50960: 1 measurements, 2173-06-20 23:50:00 to 2173-06-20 23:50:00
39
+ - Item ID 50970: 1 measurements, 2173-06-20 23:50:00 to 2173-06-20 23:50:00
40
+ - Item ID 50971: 1 measurements, 2173-06-20 23:50:00 to 2173-06-20 23:50:00
41
+ - Item ID 50983: 1 measurements, 2173-06-20 23:50:00 to 2173-06-20 23:50:00
42
+ - Item ID 51003: 2 measurements, 2173-06-20 23:50:00 to 2173-06-21 10:40:00
43
+ - Item ID 51006: 1 measurements, 2173-06-20 23:50:00 to 2173-06-20 23:50:00
44
+ - Item ID 51146: 1 measurements, 2173-06-20 23:50:00 to 2173-06-20 23:50:00
45
+ - Item ID 51200: 1 measurements, 2173-06-20 23:50:00 to 2173-06-20 23:50:00
46
+ - Item ID 51221: 1 measurements, 2173-06-20 23:50:00 to 2173-06-20 23:50:00
47
+ - Item ID 51222: 1 measurements, 2173-06-20 23:50:00 to 2173-06-20 23:50:00
48
+ - Item ID 51244: 1 measurements, 2173-06-20 23:50:00 to 2173-06-20 23:50:00
49
+ - Item ID 51248: 1 measurements, 2173-06-20 23:50:00 to 2173-06-20 23:50:00
50
+ - Item ID 51249: 1 measurements, 2173-06-20 23:50:00 to 2173-06-20 23:50:00
51
+ - Item ID 51250: 1 measurements, 2173-06-20 23:50:00 to 2173-06-20 23:50:00
52
+ - Item ID 51254: 1 measurements, 2173-06-20 23:50:00 to 2173-06-20 23:50:00
53
+ - Item ID 51256: 1 measurements, 2173-06-20 23:50:00 to 2173-06-20 23:50:00
54
+ - Item ID 51265: 1 measurements, 2173-06-20 23:50:00 to 2173-06-20 23:50:00
55
+ - Item ID 51277: 1 measurements, 2173-06-20 23:50:00 to 2173-06-20 23:50:00
56
+ - Item ID 51279: 1 measurements, 2173-06-20 23:50:00 to 2173-06-20 23:50:00
57
+ - Item ID 51301: 1 measurements, 2173-06-20 23:50:00 to 2173-06-20 23:50:00
58
+
59
+ CLINICAL NOTES:
60
+ [DISCHARGE NOTE]
61
+ Name: ___ Unit No: ___
62
+
63
+ Admission Date: ___ Discharge Date: ___
64
+
65
+ Date of Birth: ___ Sex: F
66
+
67
+ Service: MEDICINE
68
+
69
+ Allergies:
70
+ Patient recorded as having No Known Allergies to Drugs
71
+
72
+ Attending: ___.
73
+
74
+ Chief Complaint:
75
+ s/p fall with scalp laceration
76
+
77
+ Major Surgical or Invasive Procedure:
78
+ None
79
+
80
+ History of Present Illness:
81
+ Ms. ___ is a ___ yo woman with dementia who was found down at
82
+ ___ today by caregivers. ___ has had multiple falls
83
+ in the past, each time occurring when she attempts to walk
84
+ without her walker. In each instance, she falls to the ground
85
+ but maintains consciousness and is fully alert. Per ___
86
+ staff, the most recent fall prior to this one was on ___, when
87
+ she tried to walk from her bed to the bathroom without her
88
+ walker. For this reason, the staff at the ___ home have her
89
+ on a bed monitor. Yesterday, the bed monitor went off and staff
90
+ found Ms. ___ down by her bed. Pt had no LOC, light headedness,
91
+ incontinence, chest pain. She was able to answer questions
92
+ immediately following the fall (in her dialect). She was brought
93
+ to the ED due to a scalp laceration.
94
+ .
95
+ In the ED, she was noted to have + Lac on occiput with bleeding,
96
+ which was stapled in ED. Pt is unable to communicate well at
97
+ baseline, but is well-appearing, moves freely, and smiles, looks
98
+ comfortable. Patient was unable to give full history due to
99
+ dementia, but denied headache, focal weakeness or numbness or
100
+ any other complaints. She had no recollection of the incident.
101
+ VS: BP 176/91, HR 96, T 98.6 RR 16, 98% RA. Head CT was
102
+ performed. Initial read of head CT showed possible small
103
+ subarachnoid hemorrhage; however final read of head CT indicated
104
+ that there were no significant changes from CT head in ___. EKG
105
+ was unremarkable. C spine cleared. She was given tetanus shot
106
+ but no medications. She was admitted to the medicine team for
107
+ further management.
108
+
109
+
110
+ Past Medical History:
111
+ 1. Osteoarthritis.
112
+ 2. Choledocholithiasis.
113
+ 3. Urinary incontinence.
114
+ 4. Constipation.
115
+ 5. Hypercholesterolemia.
116
+ 6. Dementia.
117
+ 7. Status post subdural hematoma.
118
+ 8. Hypertension.
119
+ 9. Depression.
120
+ 10. Herpes zoster.
121
+ 11. Pseudoobstruction.
122
+
123
+
124
+ Social History:
125
+ ___
126
+ Family History:
127
+ Non-contributory
128
+
129
+ Physical Exam:
130
+ T: 97.4 P: 83 BP: 150-180/83-100 RR: 12 SaO2: 98% Ra
131
+ Gen: well-appearing ___ woman in no distress. occipital
132
+ laceration sutured.
133
+ CV: RRR no m/r/g
134
+ Pulm: CTA B
135
+ Abd: s/nd/nt +BS
136
+ Ext: no c/e/c
137
+ Neuro: A&O, moves all extremities freely, face symmetric, tracs
138
+ objects, rt pupil surgical. reflexes symmetric . Cranial nerves
139
+ ___ function intact. Symmetric motor strength in upper and
140
+ lower extremities.
141
+
142
+
143
+ Pertinent Results:
144
+ ___ 10:40AM CK(CPK)-64
145
+ ___ 10:40AM CK-MB-NotDone cTropnT-<0.01
146
+ ___ 01:58AM ___ PTT-27.2 ___
147
+ ___ 12:15AM URINE COLOR-Yellow APPEAR-Clear SP ___
148
+ ___ 12:15AM URINE BLOOD-NEG NITRITE-NEG PROTEIN-NEG
149
+ GLUCOSE-NEG KETONE-NEG BILIRUBIN-NEG UROBILNGN-1 PH-7.0 LEUK-NEG
150
+ ___ 11:58PM K+-4.4
151
+ ___ 11:50PM GLUCOSE-103 UREA N-28* CREAT-0.8 SODIUM-143
152
+ POTASSIUM-5.0 CHLORIDE-106 TOTAL CO2-27 ANION GAP-15
153
+ ___ 11:50PM estGFR-Using this
154
+ ___ 11:50PM CK(CPK)-61
155
+ ___ 11:50PM CK-MB-NotDone
156
+ ___ 11:50PM cTropnT-<0.01
157
+ ___ 11:50PM CALCIUM-8.7 PHOSPHATE-3.6 MAGNESIUM-2.5
158
+ ___ 11:50PM WBC-8.2 RBC-4.47 HGB-12.9 HCT-40.0 MCV-90
159
+ MCH-28.9 MCHC-32.3 RDW-14.1
160
+ ___ 11:50PM NEUTS-56.9 ___ MONOS-7.0 EOS-1.1
161
+ BASOS-0.3
162
+ ___ 11:50PM PLT COUNT-166
163
+ .
164
+ IMAGING
165
+ 1) CT C-spine (___)
166
+ FINDINGS: Again demonstrated are diffuse degenerative changes
167
+ throughout the cervical spine including moderate narrowing of
168
+ the facet joints of C1 on C2 and disc space narrowing at C6-C7,
169
+ sclerotic changes and osteophyte formation are also seen at
170
+ these levels. There is loss of normal lordotic curvature with
171
+ patient in neck collar. There is no evidence to suggest acute
172
+ bony injury. The prevertebral soft tissues are unremarkable.
173
+ There is minimal scarring in the left lung apex.
174
+
175
+ IMPRESSION: No evidence of acute bony injury. Degenerative
176
+ changes of the upper and lower cervical spine.
177
+ .
178
+ 2) CT HEAD W/O CONTRAST
179
+ FINDINGS: Along the anterior right temporal lobe, there is a
180
+ focal area of cortex with hyperdensity with surrounding
181
+ hypodensity concerning for small subarachnoid hemorrhage or
182
+ cortical hemorrhage with contusion. Again demonstrated are
183
+ periventricular white matter hypodensities as well as
184
+ encephalomalacia with the right frontal and parietal regions,
185
+ both appear increased compared to prior study from ___ years
186
+ ago. The ventricles are prominent with proportionally deepened
187
+ sulci consistent with diffuse global atrophy. There is no mass
188
+ effect or shift of normally midline structures or evidence of
189
+ acute major vascular territorial infarction. Limited views of
190
+ the paranasal sinuses and mastoid air cells are unremarkable.
191
+ IMPRESSION: Focal slight hyperdensity along the anterior right
192
+ temporal cortex with surrounding hypodensity. Findings are
193
+ concerning for small subarachnoid or cortical hemorrhage with
194
+ associated contusion.
195
+ NOTE ON ATTENDING REVIEW: The hypodensity in right temporal
196
+ region and subtle hyperdensity are at the site of previous
197
+ hemorrhage seen in ___. This appears to be a chronic finding.
198
+ .
199
+ 3) CHEST (SINGLE VIEW) ___
200
+ SINGLE UPRIGHT VIEW OF THE CHEST: The heart size is normal. The
201
+ ascending aorta is prominant and remaining aorta is tortuous and
202
+ of similar configuration. Mediastinal and hilar contours are
203
+ unchanged. The lungs are clear. There is no effusion.
204
+ IMPRESSION: No evidence of pneumonia or CHF.
205
+
206
+
207
+ Brief Hospital Course:
208
+ Ms. ___ is a ___ yo woman with advanced dementia who presents
209
+ with an unwitnessed fall and was found to have CT changes
210
+ concerning for ?SAH on initial read; final read stated that
211
+ there were in fact no new changes on head CT compared to a study
212
+ ___ years ago.
213
+ .
214
+ # Concern for subarachnoid hemorrhage: Initial read of head CT
215
+ was concerning for ?SAH. Thus, BP was initially maintained <140
216
+ with hydralazine and metoprolol prn. Neurosurgery followed, but
217
+ felt the CT findings could be artifact. Subsequently, the final
218
+ read of head CT by the radiology attending was read as no new
219
+ changes from ___. Thus, acute SAH was felt to be not likely.
220
+ Neurosurgery agreed with this assessment. She should be seen by
221
+ Dr. ___ in 4 weeks; a phone number has been provided to make
222
+ an appointment. She may require head CT prior to this
223
+ appointment.
224
+ .
225
+ # Fall: unwitnessed but likely similar to multiple prior falls,
226
+ which are described by the ___ staff as mechanical in
227
+ nature. Primary cardiac cause is possible, but less likely given
228
+ history. Upon admission, the pt was placed on telemetry. Pt was
229
+ ruled out with negative enzymes. The pt remained without cardiac
230
+ symptoms throughout her hospitalization, and did not have any
231
+ concerning telemetry changes. Geriatrics team suggested stopping
232
+ her outpatient percocet and consider decreasing her Ativan to
233
+ PRN to decrease the risk of future falls. For pain control, they
234
+ further advised using Tylenol PRN on top of the existing
235
+ standing Tylenol. We discharged her on her usual ativan regimen;
236
+ consideration should be made to change to PRN but would monitor
237
+ for withdrawal if this is done.
238
+ .
239
+ # hypertension: initially, goal SBP was <140 with
240
+ hydral/metoprolol prn, given concern for ?SAH. Now that acute
241
+ SAH is no longer a major concern, BP control may be relaxed,
242
+ with more emphasis on achieving good control on PO anti-HTN
243
+ meds. She may require beta blockade with metoprolol 12.5 daily
244
+ if her BP remains elevated; the risk of falling on
245
+ anti-hypertensives will need to be balanced against the utility
246
+ of controlling her blood pressure tightly.
247
+
248
+ Medications on Admission:
249
+ aspirin 81mg daily
250
+ glucosamine
251
+ risperdal 0.25mg po daily
252
+ sennacot at lunch
253
+ lidoderm patch to groin
254
+ tylenol bid
255
+ colace bid
256
+ ativan 0.5mg po bid
257
+ ursodiol 300mg po bid
258
+ bisacodyl supposotory prn
259
+ lactulose prn
260
+ percocet 2.5mg prn
261
+
262
+ Discharge Medications:
263
+ 1. Aspirin 81 mg Tablet Sig: One (1) Tablet PO once a day.
264
+ 2. Glucosamine Oral
265
+ 3. Risperidone 0.25 mg Tablet Sig: One (1) Tablet PO once a day.
266
+
267
+ 4. Senna 8.6 mg Tablet Sig: One (1) Tablet PO DAILY (Daily).
268
+ 5. Lidocaine 5 %(700 mg/patch) Adhesive Patch, Medicated Sig:
269
+ One (1) Adhesive Patch, Medicated Topical 12 HOURS ON, 12 HOURS
270
+ OFF ().
271
+ 6. Acetaminophen 650 mg Tablet Sig: One (1) Tablet PO twice a
272
+ day.
273
+ 7. Tylenol ___ mg Tablet Sig: One (1) Tablet PO three times a
274
+ day as needed for pain.
275
+ 8. Docusate Sodium 100 mg Capsule Sig: One (1) Capsule PO BID (2
276
+ times a day).
277
+ 9. Lorazepam 0.5 mg Tablet Sig: One (1) Tablet PO BID (2 times a
278
+ day).
279
+ 10. Ursodiol 300 mg Capsule Sig: One (1) Capsule PO BID (2 times
280
+ a day).
281
+ 11. Bisacodyl 10 mg Suppository Sig: One (1) Suppository Rectal
282
+ HS (at bedtime) as needed.
283
+
284
+
285
+ Discharge Disposition:
286
+ Extended Care
287
+
288
+ Facility:
289
+ ___
290
+
291
+ Discharge Diagnosis:
292
+ Primary
293
+ 1. Scalp laceration
294
+ 2. Fall
295
+ Secondary
296
+ 1. Dementia
297
+
298
+
299
+ Discharge Condition:
300
+ Good
301
+
302
+
303
+ Discharge Instructions:
304
+ You were admitted after a fall. You have a laceration over the
305
+ back of your head. This was repaired with staples. The staples
306
+ should remain in until you are evaluated by a physician who can
307
+ determine when they are to be removed. We have made changes
308
+ medications listed below. If you have further falls, light
309
+ headedness, dizziness, weakness, headache, sensory disturbances,
310
+ shortness of breath, chest pain, you should contact you PCP or
311
+ return to the ED.
312
+
313
+ Followup Instructions:
314
+ ___
315
+
316
+ [RADIOLOGY NOTE]
317
+ INDICATION: ___ female with unwitnessed fall and nonfocal lung exam.
318
+ Evaluate for overload or pneumonia.
319
+
320
+ COMPARISON: ___.
321
+
322
+ SINGLE UPRIGHT VIEW OF THE CHEST: The heart size is normal. The
323
+ ascending aorta is prominant and remaining aorta is tortuous and of similar
324
+ configuration. Mediastinal and hilar contours are unchanged. The lungs are
325
+ clear. There is no effusion.
326
+
327
+ IMPRESSION: No evidence of pneumonia or CHF.
328
+
329
+ [RADIOLOGY NOTE]
330
+ INDICATION: ___ female with unwitnessed fall and 3 cm laceration on
331
+ the left occiput. Unable to provide history due to baseline dementia.
332
+ Evaluate for bleed.
333
+
334
+ COMPARISON: ___.
335
+
336
+ TECHNIQUE: Non-contrast CT of the head.
337
+
338
+ FINDINGS: Along the anterior right temporal lobe, there is a focal area of
339
+ cortex with hyperdensity with surrounding hypodensity concerning for small
340
+ subarachnoid hemorrhage or cortical hemorrhage with contusion. Again
341
+ demonstrated are periventricular white matter hypodensities as well as
342
+ encephalomalacia with the right frontal and parietal regions, both appear
343
+ increased compared to prior study from ___ years ago. The ventricles are
344
+ prominent with proportionally deepened sulci consistent with diffuse global
345
+ atrophy. There is no mass effect or shift of normally midline structures or
346
+ evidence of acute major vascular territorial infarction.
347
+
348
+ Limited views of the paranasal sinuses and mastoid air cells are unremarkable.
349
+
350
+ IMPRESSION:
351
+
352
+ Focal slight hyperdensity along the anterior right temporal cortex with
353
+ surrounding hypodensity. Findings are concerning for small subarachnoid or
354
+ cortical hemorrhage with associated contusion.
355
+
356
+
357
+ NOTE ON ATTENDING REVIEW: The hypodensity in right temporal region and subtle
358
+ hyperdensity are at the site of previous hemorrhage seen in ___. This appears
359
+ to be a chronic finding.
360
+
361
+ [RADIOLOGY NOTE]
362
+ INDICATION: ___ female with unwitnessed fall and 3-cm laceration on
363
+ the left occiput. Unable to provide history.
364
+
365
+ COMPARISON: CT C-spine ___.
366
+
367
+ TECHNIQUE: MDCT acquired axial images of the cervical spine were obtained
368
+ without IV contrast. Coronal and sagittal reformations were performed.
369
+
370
+ FINDINGS: Again demonstrated are diffuse degenerative changes throughout the
371
+ cervical spine including moderate narrowing of the facet joints of C1 on C2
372
+ and disc space narrowing at C6-C7, sclerotic changes and osteophyte formation
373
+ are also seen at these levels. There is loss of normal lordotic curvature
374
+ with patient in neck collar. There is no evidence to suggest acute bony
375
+ injury. The prevertebral soft tissues are unremarkable. There is minimal
376
+ scarring in the left lung apex.
377
+
378
+ IMPRESSION: No evidence of acute bony injury. Degenerative changes of the
379
+ upper and lower cervical spine.
summaries/subject_16139570_hadm_20366586_model_input.txt ADDED
@@ -0,0 +1,398 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ PRE-OPERATIVE SUMMARY INPUT (SINGLE ADMISSION):
2
+
3
+ PATIENT:
4
+ - Age: 91
5
+ - Gender: F
6
+
7
+ ADMISSION:
8
+ - Admission ID: 20366586
9
+ - Admission Type: EW EMER.
10
+ - Admission Location: EMERGENCY ROOM
11
+ - Discharge Location: SKILLED NURSING FACILITY
12
+ - Insurance: Other
13
+ - Race: ASIAN
14
+ - Marital Status: WIDOWED
15
+ - Language: ?
16
+
17
+ PROCEDURES (1 total):
18
+ 1. ICD-9: 8659
19
+
20
+ DIAGNOSES (5 total):
21
+ 1. ICD-9: 8730
22
+ 2. ICD-9: E8889
23
+ 3. ICD-9: 2720
24
+ 4. ICD-9: 4019
25
+ 5. ICD-9: 2948
26
+
27
+ LABORATORY RESULTS:
28
+ Total laboratory events: 33
29
+ Most frequent lab tests:
30
+ - Item ID 51003: 2 measurements
31
+ - Item ID 50910: 2 measurements
32
+ - Item ID 50911: 2 measurements
33
+ - Item ID 51146: 1 measurements
34
+ - Item ID 51200: 1 measurements
35
+
36
+ CLINICAL NOTES:
37
+ [DISCHARGE]
38
+ Name: ___ Unit No: ___
39
+
40
+ Admission Date: ___ Discharge Date: ___
41
+
42
+ Date of Birth: ___ Sex: F
43
+
44
+ Service: MEDICINE
45
+
46
+ Allergies:
47
+ Patient recorded as having No Known Allergies to Drugs
48
+
49
+ Attending: ___.
50
+
51
+ Chief Complaint:
52
+ s/p fall with scalp laceration
53
+
54
+ Major Surgical or Invasive Procedure:
55
+ None
56
+
57
+ History of Present Illness:
58
+ Ms. ___ is a ___ yo woman with dementia who was found down at
59
+ ___ today by caregivers. ___ has had multiple falls
60
+ in the past, each time occurring when she attempts to walk
61
+ without her walker. In each instance, she falls to the ground
62
+ but maintains consciousness and is fully alert. Per ___
63
+ staff, the most recent fall prior to this one was on ___, when
64
+ she tried to walk from her bed to the bathroom without her
65
+ walker. For this reason, the staff at the ___ home have her
66
+ on a bed monitor. Yesterday, the bed monitor went off and staff
67
+ found Ms. ___ down by her bed. Pt had no LOC, light headedness,
68
+ incontinence, chest pain. She was able to answer questions
69
+ immediately following the fall (in her dialect). She was brought
70
+ to the ED due to a scalp laceration.
71
+ .
72
+ In the ED, she was noted to have + Lac on occiput with bleeding,
73
+ which was stapled in ED. Pt is unable to communicate well at
74
+ baseline, but is well-appearing, moves freely, and smiles, looks
75
+ comfortable. Patient was unable to give full history due to
76
+ dementia, but denied headache, focal weakeness or numbness or
77
+ any other complaints. She had no recollection of the incident.
78
+ VS: BP 176/91, HR 96, T 98.6 RR 16, 98% RA. Head CT was
79
+ performed. Initial read of head CT showed possible small
80
+ subarachnoid hemorrhage; however final read of head CT indicated
81
+ that there were no significant changes from CT head in ___. EKG
82
+ was unremarkable. C spine cleared. She was given tetanus shot
83
+ but no medications. She was admitted to the medicine team for
84
+ further management.
85
+
86
+
87
+ Past Medical History:
88
+ 1. Osteoarthritis.
89
+ 2. Choledocholithiasis.
90
+ 3. Urinary incontinence.
91
+ 4. Constipation.
92
+ 5. Hypercholesterolemia.
93
+ 6. Dementia.
94
+ 7. Status post subdural hematoma.
95
+ 8. Hypertension.
96
+ 9. Depression.
97
+ 10. Herpes zoster.
98
+ 11. Pseudoobstruction.
99
+
100
+
101
+ Social History:
102
+ ___
103
+ Family History:
104
+ Non-contributory
105
+
106
+ Physical Exam:
107
+ T: 97.4 P: 83 BP: 150-180/83-100 RR: 12 SaO2: 98% Ra
108
+ Gen: well-appearing ___ woman in no distress. occipital
109
+ laceration sutured.
110
+ CV: RRR no m/r/g
111
+ Pulm: CTA B
112
+ Abd: s/nd/nt +BS
113
+ Ext: no c/e/c
114
+ Neuro: A&O, moves all extremities freely, face symmetric, tracs
115
+ objects, rt pupil surgical. reflexes symmetric . Cranial nerves
116
+ ___ function intact. Symmetric motor strength in upper and
117
+ lower extremities.
118
+
119
+
120
+ Pertinent Results:
121
+ ___ 10:40AM CK(CPK)-64
122
+ ___ 10:40AM CK-MB-NotDone cTropnT-<0.01
123
+ ___ 01:58AM ___ PTT-27.2 ___
124
+ ___ 12:15AM URINE COLOR-Yellow APPEAR-Clear SP ___
125
+ ___ 12:15AM URINE BLOOD-NEG NITRITE-NEG PROTEIN-NEG
126
+ GLUCOSE-NEG KETONE-NEG BILIRUBIN-NEG UROBILNGN-1 PH-7.0 LEUK-NEG
127
+ ___ 11:58PM K+-4.4
128
+ ___ 11:50PM GLUCOSE-103 UREA N-28* CREAT-0.8 SODIUM-143
129
+ POTASSIUM-5.0 CHLORIDE-106 TOTAL CO2-27 ANION GAP-15
130
+ ___ 11:50PM estGFR-Using this
131
+ ___ 11:50PM CK(CPK)-61
132
+ ___ 11:50PM CK-MB-NotDone
133
+ ___ 11:50PM cTropnT-<0.01
134
+ ___ 11:50PM CALCIUM-8.7 PHOSPHATE-3.6 MAGNESIUM-2.5
135
+ ___ 11:50PM WBC-8.2 RBC-4.47 HGB-12.9 HCT-40.0 MCV-90
136
+ MCH-28.9 MCHC-32.3 RDW-14.1
137
+ ___ 11:50PM NEUTS-56.9 ___ MONOS-7.0 EOS-1.1
138
+ BASOS-0.3
139
+ ___ 11:50PM PLT COUNT-166
140
+ .
141
+ IMAGING
142
+ 1) CT C-spine (___)
143
+ FINDINGS: Again demonstrated are diffuse degenerative changes
144
+ throughout the cervical spine including moderate narrowing of
145
+ the facet joints of C1 on C2 and disc space narrowing at C6-C7,
146
+ sclerotic changes and osteophyte formation are also seen at
147
+ these levels. There is loss of normal lordotic curvature with
148
+ patient in neck collar. There is no evidence to suggest acute
149
+ bony injury. The prevertebral soft tissues are unremarkable.
150
+ There is minimal scarring in the left lung apex.
151
+
152
+ IMPRESSION: No evidence of acute bony injury. Degenerative
153
+ changes of the upper and lower cervical spine.
154
+ .
155
+ 2) CT HEAD W/O CONTRAST
156
+ FINDINGS: Along the anterior right temporal lobe, there is a
157
+ focal area of cortex with hyperdensity with surrounding
158
+ hypodensity concerning for small subarachnoid hemorrhage or
159
+ cortical hemorrhage with contusion. Again demonstrated are
160
+ periventricular white matter hypodensities as well as
161
+ encephalomalacia with the right frontal and parietal regions,
162
+ both appear increased compared to prior study from ___ years
163
+ ago. The ventricles are prominent with proportionally deepened
164
+ sulci consistent with diffuse global atrophy. There is no mass
165
+ effect or shift of normally midline structures or evidence of
166
+ acute major vascular territorial infarction. Limited views of
167
+ the paranasal sinuses and mastoid air cells are unremarkable.
168
+ IMPRESSION: Focal slight hyperdensity along the anterior right
169
+ temporal cortex with surrounding hypodensity. Findings are
170
+ concerning for small subarachnoid or cortical hemorrhage with
171
+ associated contusion.
172
+ NOTE ON ATTENDING REVIEW: The hypodensity in right temporal
173
+ region and subtle hyperdensity are at the site of previous
174
+ hemorrhage seen in ___. This appears to be a chronic finding.
175
+ .
176
+ 3) CHEST (SINGLE VIEW) ___
177
+ SINGLE UPRIGHT VIEW OF THE CHEST: The heart size is normal. The
178
+ ascending aorta is prominant and remaining aorta is tortuous and
179
+ of similar configuration. Mediastinal and hilar contours are
180
+ unchanged. The lungs are clear. There is no effusion.
181
+ IMPRESSION: No evidence of pneumonia or CHF.
182
+
183
+
184
+ Brief Hospital Course:
185
+ Ms. ___ is a ___ yo woman with advanced dementia who presents
186
+ with an unwitnessed fall and was found to have CT changes
187
+ concerning for ?SAH on initial read; final read stated that
188
+ there were in fact no new changes on head CT compared to a study
189
+ ___ years ago.
190
+ .
191
+ # Concern for subarachnoid hemorrhage: Initial read of head CT
192
+ was concerning for ?SAH. Thus, BP was initially maintained <140
193
+ with hydralazine and metoprolol prn. Neurosurgery followed, but
194
+ felt the CT findings could be artifact. Subsequently, the final
195
+ read of head CT by the radiology attending was read as no new
196
+ changes from ___. Thus, acute SAH was felt to be not likely.
197
+ Neurosurgery agreed with this assessment. She should be seen by
198
+ Dr. ___ in 4 weeks; a phone number has been provided to make
199
+ an appointment. She may require head CT prior to this
200
+ appointment.
201
+ .
202
+ # Fall: unwitnessed but likely similar to multiple prior falls,
203
+ which are described by the ___ staff as mechanical in
204
+ nature. Primary cardiac cause is possible, but less likely given
205
+ history. Upon admission, the pt was placed on telemetry. Pt was
206
+ ruled out with negative enzymes. The pt remained without cardiac
207
+ symptoms throughout her hospitalization, and did not have any
208
+ concerning telemetry changes. Geriatrics team suggested stopping
209
+ her outpatient percocet and consider decreasing her Ativan to
210
+ PRN to decrease the risk of future falls. For pain control, they
211
+ further advised using Tylenol PRN on top of the existing
212
+ standing Tylenol. We discharged her on her usual ativan regimen;
213
+ consideration should be made to change to PRN but would monitor
214
+ for withdrawal if this is done.
215
+ .
216
+ # hypertension: initially, goal SBP was <140 with
217
+ hydral/metoprolol prn, given concern for ?SAH. Now that acute
218
+ SAH is no longer a major concern, BP control may be relaxed,
219
+ with more emphasis on achieving good control on PO anti-HTN
220
+ meds. She may require beta blockade with metoprolol 12.5 daily
221
+ if her BP remains elevated; the risk of falling on
222
+ anti-hypertensives will need to be balanced against the utility
223
+ of controlling her blood pressure tightly.
224
+
225
+ Medications on Admission:
226
+ aspirin 81mg daily
227
+ glucosamine
228
+ risperdal 0.25mg po daily
229
+ sennacot at lunch
230
+ lidoderm patch to groin
231
+ tylenol bid
232
+ colace bid
233
+ ativan 0.5mg po bid
234
+ ursodiol 300mg po bid
235
+ bisacodyl supposotory prn
236
+ lactulose prn
237
+ percocet 2.5mg prn
238
+
239
+ Discharge Medications:
240
+ 1. Aspirin 81 mg Tablet Sig: One (1) Tablet PO once a day.
241
+ 2. Glucosamine Oral
242
+ 3. Risperidone 0.25 mg Tablet Sig: One (1) Tablet PO once a day.
243
+
244
+ 4. Senna 8.6 mg Tablet Sig: One (1) Tablet PO DAILY (Daily).
245
+ 5. Lidocaine 5 %(700 mg/patch) Adhesive Patch, Medicated Sig:
246
+ One (1) Adhesive Patch, Medicated Topical 12 HOURS ON, 12 HOURS
247
+ OFF ().
248
+ 6. Acetaminophen 650 mg Tablet Sig: One (1) Tablet PO twice a
249
+ day.
250
+ 7. Tylenol ___ mg Tablet Sig: One (1) Tablet PO three times a
251
+ day as needed for pain.
252
+ 8. Docusate Sodium 100 mg Capsule Sig: One (1) Capsule PO BID (2
253
+ times a day).
254
+ 9. Lorazepam 0.5 mg Tablet Sig: One (1) Tablet PO BID (2 times a
255
+ day).
256
+ 10. Ursodiol 300 mg Capsule Sig: One (1) Capsule PO BID (2 times
257
+ a day).
258
+ 11. Bisacodyl 10 mg Suppository Sig: One (1) Suppository Rectal
259
+ HS (at bedtime) as needed.
260
+
261
+
262
+ Discharge Disposition:
263
+ Extended Care
264
+
265
+ Facility:
266
+ ___
267
+
268
+ Discharge Diagnosis:
269
+ Primary
270
+ 1. Scalp laceration
271
+ 2. Fall
272
+ Secondary
273
+ 1. Dementia
274
+
275
+
276
+ Discharge Condition:
277
+ Good
278
+
279
+
280
+ Discharge Instructions:
281
+ You were admitted after a fall. You have a laceration over the
282
+ back of your head. This was repaired with staples. The staples
283
+ should remain in until you are evaluated by a physician who can
284
+ determine when they are to be removed. We have made changes
285
+ medications listed below. If you have further falls, light
286
+ headedness, dizziness, weakness, headache, sensory disturbances,
287
+ shortness of breath, chest pain, you should contact you PCP or
288
+ return to the ED.
289
+
290
+ Followup Instructions:
291
+ ___
292
+
293
+
294
+ [RADIOLOGY] INDICATION: ___ female with unwitnessed fall and nonfocal lung exam.
295
+ Evaluate for overload or pneumonia.
296
+
297
+ COMPARISON: ___.
298
+
299
+ SINGLE UPRIGHT VIEW OF THE CHEST: The heart size is normal. The
300
+ ascending aorta is prominant and remaining aorta is tortuous and of similar
301
+ configuration. Mediastinal and hilar contours are unchanged. The lungs are
302
+ clear. There is no effusion.
303
+
304
+ IMPRESSION: No evidence of pneumonia or CHF.
305
+
306
+
307
+ [RADIOLOGY] INDICATION: ___ female with unwitnessed fall and 3 cm laceration on
308
+ the left occiput. Unable to provide history due to baseline dementia.
309
+ Evaluate for bleed.
310
+
311
+ COMPARISON: ___.
312
+
313
+ TECHNIQUE: Non-contrast CT of the head.
314
+
315
+ FINDINGS: Along the anterior right temporal lobe, there is a focal area of
316
+ cortex with hyperdensity with surrounding hypodensity concerning for small
317
+ subarachnoid hemorrhage or cortical hemorrhage with contusion. Again
318
+ demonstrated are periventricular white matter hypodensities as well as
319
+ encephalomalacia with the right frontal and parietal regions, both appear
320
+ increased compared to prior study from ___ years ago. The ventricles are
321
+ prominent with proportionally deepened sulci consistent with diffuse global
322
+ atrophy. There is no mass effect or shift of normally midline structures or
323
+ evidence of acute major vascular territorial infarction.
324
+
325
+ Limited views of the paranasal sinuses and mastoid air cells are unremarkable.
326
+
327
+ IMPRESSION:
328
+
329
+ Focal slight hyperdensity along the anterior right temporal cortex with
330
+ surrounding hypodensity. Findings are concerning for small subarachnoid or
331
+ cortical hemorrhage with associated contusion.
332
+
333
+
334
+ NOTE ON ATTENDING REVIEW: The hypodensity in right temporal region and subtle
335
+ hyperdensity are at the site of previous hemorrhage seen in ___. This appears
336
+ to be a chronic finding.
337
+
338
+
339
+ [RADIOLOGY] INDICATION: ___ female with unwitnessed fall and 3-cm laceration on
340
+ the left occiput. Unable to provide history.
341
+
342
+ COMPARISON: CT C-spine ___.
343
+
344
+ TECHNIQUE: MDCT acquired axial images of the cervical spine were obtained
345
+ without IV contrast. Coronal and sagittal reformations were performed.
346
+
347
+ FINDINGS: Again demonstrated are diffuse degenerative changes throughout the
348
+ cervical spine including moderate narrowing of the facet joints of C1 on C2
349
+ and disc space narrowing at C6-C7, sclerotic changes and osteophyte formation
350
+ are also seen at these levels. There is loss of normal lordotic curvature
351
+ with patient in neck collar. There is no evidence to suggest acute bony
352
+ injury. The prevertebral soft tissues are unremarkable. There is minimal
353
+ scarring in the left lung apex.
354
+
355
+ IMPRESSION: No evidence of acute bony injury. Degenerative changes of the
356
+ upper and lower cervical spine.
357
+
358
+ PROCEDURES (readable):
359
+ - 8659 (ICD-9) — Closure of skin and subcutaneous tissue of other sites
360
+
361
+ DIAGNOSES (readable):
362
+ - 8730 (ICD-9) — Open wound of scalp, without mention of complication
363
+ - E8889 (ICD-9) — Unspecified fall
364
+ - 2720 (ICD-9) — Pure hypercholesterolemia
365
+ - 4019 (ICD-9) — Unspecified essential hypertension
366
+ - 2948 (ICD-9) — Other persistent mental disorders due to conditions classified elsewhere
367
+
368
+ LAB ITEMS (readable, deduped):
369
+ - Anion Gap (Item 50868)
370
+ - Basophils (Item 51146)
371
+ - Bicarbonate (Item 50882)
372
+ - Calcium, Total (Item 50893)
373
+ - Chloride (Item 50902)
374
+ - Creatine Kinase (CK) (Item 50910)
375
+ - Creatine Kinase, MB Isoenzyme (Item 50911)
376
+ - Creatinine (Item 50912)
377
+ - Eosinophils (Item 51200)
378
+ - Estimated GFR (MDRD equation) (Item 50920)
379
+ - Glucose (Item 50931)
380
+ - Hematocrit (Item 51221)
381
+ - Hemoglobin (Item 51222)
382
+ - Lymphocytes (Item 51244)
383
+ - MCH (Item 51248)
384
+ - MCHC (Item 51249)
385
+ - MCV (Item 51250)
386
+ - Magnesium (Item 50960)
387
+ - Monocytes (Item 51254)
388
+ - Neutrophils (Item 51256)
389
+ - Phosphate (Item 50970)
390
+ - Platelet Count (Item 51265)
391
+ - Potassium (Item 50971)
392
+ - Potassium, Whole Blood (Item 50822)
393
+ - RDW (Item 51277)
394
+ - Red Blood Cells (Item 51279)
395
+ - Sodium (Item 50983)
396
+ - Troponin T (Item 51003)
397
+ - Urea Nitrogen (Item 51006)
398
+ - White Blood Cells (Item 51301)
summaries/subject_16139570_hadm_20366586_summary.txt ADDED
@@ -0,0 +1,81 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ **PRE-OPERATIVE SUMMARY INPUT (SINGLE ADMISSION)**
2
+
3
+ **Patient Information:**
4
+
5
+ * Age: 91
6
+ * Gender: Female
7
+ * Admission ID: 20366586
8
+ * Admission Type: Emergency (EW EMER)
9
+ * Admission Location: Emergency Room
10
+ * Discharge Location: Skilled Nursing Facility
11
+ * Insurance: Other
12
+ * Race: Asian
13
+ * Marital Status: Widow
14
+ * Language: Not specified
15
+
16
+ **Procedures:**
17
+
18
+ * ICD-9: 8659 (Closure of skin and subcutaneous tissue of other sites)
19
+
20
+ **Diagnoses:**
21
+
22
+ * ICD-9: 8730 (Open wound of scalp)
23
+ * ICD-9: E8889 (Unspecified fall)
24
+ * ICD-9: 2720 (Pure hypercholesterolemia)
25
+ * ICD-9: 4019 (Unspecified essential hypertension)
26
+ * ICD-9: 2948 (Other persistent mental disorders due to conditions classified elsewhere)
27
+
28
+ **Laboratory Results:**
29
+
30
+ * Total laboratory events: 33
31
+ * Most frequent lab tests:
32
+ + Item ID 51003: 2 measurements
33
+ + Item ID 50910: 2 measurements
34
+ + Item ID 50911: 2 measurements
35
+ + Item ID 51146: 1 measurement
36
+ + Item ID 51200: 1 measurement
37
+
38
+ **Clinical Notes:**
39
+
40
+ * The patient was admitted after an unwitnessed fall, resulting in a scalp laceration.
41
+ * The patient has a history of dementia, osteoarthritis, choledocholithiasis, urinary incontinence, constipation, hypercholesterolemia, hypertension, depression, herpes zoster, and pseudoobstruction.
42
+ * The patient was given tetanus shot but no medications.
43
+ * The patient was admitted to the medicine team for further management.
44
+ * The patient's head CT showed possible small subarachnoid hemorrhage, but the final read indicated no new changes.
45
+ * The patient was discharged to a skilled nursing facility.
46
+
47
+ **Medications:**
48
+
49
+ * Aspirin 81mg daily
50
+ * Glucosamine
51
+ * Risperidone 0.25mg po daily
52
+ * Senna 8.6mg tablet daily
53
+ * Lidocaine 5% patch (700mg/patch) adhesive patch, medicated
54
+ * Acetaminophen 650mg tablet twice a day
55
+ * Tylenol (dosage not specified)
56
+ * Docusate sodium 100mg capsule twice a day
57
+ * Lorazepam 0.5mg tablet twice a day
58
+ * Ursodiol 300mg capsule twice a day
59
+ * Bisacodyl 10mg suppository rectal HS (at bedtime) as needed
60
+
61
+ **Discharge Instructions:**
62
+
63
+ * The patient should follow up with a physician in 4 weeks.
64
+ * The patient may require a head CT prior to the follow-up appointment.
65
+ * The patient should contact their PCP or return to the ED if they experience further falls, light-headedness, dizziness, weakness, headache, sensory disturbances, shortness of breath, or chest pain.
66
+
67
+ **Radiology Results:**
68
+
69
+ * CT C-spine: No evidence of acute bony injury. Degenerative changes of the upper and lower cervical spine.
70
+ * CT Head: Focal slight hyperdensity along the anterior right temporal cortex with surrounding hypodensity. Findings are concerning for small subarachnoid or cortical hemorrhage with associated contusion.
71
+ * Chest X-ray: No evidence of pneumonia or CHF.
72
+
73
+ **Procedure and Diagnosis Readable:**
74
+
75
+ * Procedure: 8659 (Closure of skin and subcutaneous tissue of other sites)
76
+ * Diagnosis: 8730 (Open wound of scalp)
77
+
78
+ **Lab Items Readable (deduped):**
79
+
80
+ * Anion Gap (Item 50868)
81
+ * Basophils (Item 51146)
summaries/subject_16139570_hadm_23551539_input.txt ADDED
@@ -0,0 +1,502 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ PRE-OPERATIVE SUMMARY INPUT (SINGLE ADMISSION):
2
+
3
+ PATIENT:
4
+ - Age: 91
5
+ - Gender: F
6
+
7
+ ADMISSION:
8
+ - Admission ID: 23551539
9
+ - Admission Type: EW EMER.
10
+ - Admission Location: EMERGENCY ROOM
11
+ - Discharge Location: DIED
12
+ - Insurance: Medicare
13
+ - Race: ASIAN - CHINESE
14
+ - Marital Status: WIDOWED
15
+ - Language: ?
16
+
17
+ PROCEDURES (1 total):
18
+ - 3897 (ICD-9)
19
+
20
+ DIAGNOSES (16 total):
21
+ - 0389 (ICD-9)
22
+ - 78552 (ICD-9)
23
+ - 5990 (ICD-9)
24
+ - 5849 (ICD-9)
25
+ - 2762 (ICD-9)
26
+ - 5180 (ICD-9)
27
+ - 49121 (ICD-9)
28
+ - 99592 (ICD-9)
29
+ - 0414 (ICD-9)
30
+ - 42731 (ICD-9)
31
+ - 27652 (ICD-9)
32
+ - 28529 (ICD-9)
33
+ - 2948 (ICD-9)
34
+ - 4019 (ICD-9)
35
+ - 2724 (ICD-9)
36
+ - 56032 (ICD-9)
37
+
38
+ LABORATORY RESULTS:
39
+ - Item ID 50802: 1 measurements, 2176-09-05 16:56:00 to 2176-09-05 16:56:00
40
+ - Item ID 50804: 1 measurements, 2176-09-05 16:56:00 to 2176-09-05 16:56:00
41
+ - Item ID 50812: 1 measurements, 2176-09-05 16:56:00 to 2176-09-05 16:56:00
42
+ - Item ID 50813: 3 measurements, 2176-09-05 04:51:00 to 2176-09-06 06:47:00
43
+ - Item ID 50818: 1 measurements, 2176-09-05 16:56:00 to 2176-09-05 16:56:00
44
+ - Item ID 50820: 1 measurements, 2176-09-05 16:56:00 to 2176-09-05 16:56:00
45
+ - Item ID 50821: 1 measurements, 2176-09-05 16:56:00 to 2176-09-05 16:56:00
46
+ - Item ID 50822: 1 measurements, 2176-09-06 06:47:00 to 2176-09-06 06:47:00
47
+ - Item ID 50825: 1 measurements, 2176-09-05 16:56:00 to 2176-09-05 16:56:00
48
+ - Item ID 50852: 1 measurements, 2176-09-05 04:27:00 to 2176-09-05 04:27:00
49
+ - Item ID 50862: 1 measurements, 2176-09-05 04:27:00 to 2176-09-05 04:27:00
50
+ - Item ID 50868: 5 measurements, 2176-09-05 04:27:00 to 2176-09-08 03:54:00
51
+ - Item ID 50882: 5 measurements, 2176-09-05 04:27:00 to 2176-09-08 03:54:00
52
+ - Item ID 50893: 5 measurements, 2176-09-05 04:27:00 to 2176-09-08 03:54:00
53
+ - Item ID 50902: 5 measurements, 2176-09-05 04:27:00 to 2176-09-08 03:54:00
54
+ - Item ID 50910: 2 measurements, 2176-09-05 04:27:00 to 2176-09-05 15:23:00
55
+ - Item ID 50911: 2 measurements, 2176-09-05 04:27:00 to 2176-09-05 15:23:00
56
+ - Item ID 50912: 5 measurements, 2176-09-05 04:27:00 to 2176-09-08 03:54:00
57
+ - Item ID 50919: 1 measurements, 2176-09-06 18:25:00 to 2176-09-06 18:25:00
58
+ - Item ID 50931: 4 measurements, 2176-09-05 04:27:00 to 2176-09-08 03:54:00
59
+ - Item ID 50960: 5 measurements, 2176-09-05 04:27:00 to 2176-09-08 03:54:00
60
+ - Item ID 50970: 5 measurements, 2176-09-05 04:27:00 to 2176-09-08 03:54:00
61
+ - Item ID 50971: 5 measurements, 2176-09-05 04:27:00 to 2176-09-08 03:54:00
62
+ - Item ID 50983: 5 measurements, 2176-09-05 04:27:00 to 2176-09-08 03:54:00
63
+ - Item ID 51003: 2 measurements, 2176-09-05 04:27:00 to 2176-09-05 15:23:00
64
+ - Item ID 51006: 5 measurements, 2176-09-05 04:27:00 to 2176-09-08 03:54:00
65
+ - Item ID 51009: 4 measurements, 2176-09-05 04:27:00 to 2176-09-08 08:19:00
66
+ - Item ID 51078: 2 measurements, 2176-09-05 04:27:00 to 2176-09-06 11:45:00
67
+ - Item ID 51082: 2 measurements, 2176-09-05 04:27:00 to 2176-09-06 11:45:00
68
+ - Item ID 51087: 2 measurements, 2176-09-05 04:27:00 to 2176-09-06 11:45:00
69
+ - Item ID 51093: 1 measurements, 2176-09-06 11:45:00 to 2176-09-06 11:45:00
70
+ - Item ID 51097: 2 measurements, 2176-09-05 04:27:00 to 2176-09-06 11:45:00
71
+ - Item ID 51100: 2 measurements, 2176-09-05 04:27:00 to 2176-09-06 11:45:00
72
+ - Item ID 51137: 3 measurements, 2176-09-05 04:27:00 to 2176-09-07 04:06:00
73
+ - Item ID 51143: 3 measurements, 2176-09-05 04:27:00 to 2176-09-07 04:06:00
74
+ - Item ID 51144: 3 measurements, 2176-09-05 04:27:00 to 2176-09-07 04:06:00
75
+ - Item ID 51146: 3 measurements, 2176-09-05 04:27:00 to 2176-09-07 04:06:00
76
+ - Item ID 51200: 3 measurements, 2176-09-05 04:27:00 to 2176-09-07 04:06:00
77
+ - Item ID 51221: 4 measurements, 2176-09-05 04:27:00 to 2176-09-08 03:54:00
78
+ - Item ID 51222: 4 measurements, 2176-09-05 04:27:00 to 2176-09-08 03:54:00
79
+ - Item ID 51233: 3 measurements, 2176-09-05 04:27:00 to 2176-09-07 04:06:00
80
+ - Item ID 51237: 2 measurements, 2176-09-05 04:27:00 to 2176-09-08 03:54:00
81
+ - Item ID 51244: 3 measurements, 2176-09-05 04:27:00 to 2176-09-07 04:06:00
82
+ - Item ID 51246: 3 measurements, 2176-09-05 04:27:00 to 2176-09-07 04:06:00
83
+ - Item ID 51248: 4 measurements, 2176-09-05 04:27:00 to 2176-09-08 03:54:00
84
+ - Item ID 51249: 4 measurements, 2176-09-05 04:27:00 to 2176-09-08 03:54:00
85
+ - Item ID 51250: 4 measurements, 2176-09-05 04:27:00 to 2176-09-08 03:54:00
86
+ - Item ID 51251: 3 measurements, 2176-09-05 04:27:00 to 2176-09-07 04:06:00
87
+ - Item ID 51252: 3 measurements, 2176-09-05 04:27:00 to 2176-09-07 04:06:00
88
+ - Item ID 51254: 3 measurements, 2176-09-05 04:27:00 to 2176-09-07 04:06:00
89
+ - Item ID 51255: 3 measurements, 2176-09-05 04:27:00 to 2176-09-07 04:06:00
90
+ - Item ID 51256: 3 measurements, 2176-09-05 04:27:00 to 2176-09-07 04:06:00
91
+ - Item ID 51260: 2 measurements, 2176-09-05 04:27:00 to 2176-09-07 04:06:00
92
+ - Item ID 51265: 4 measurements, 2176-09-05 04:27:00 to 2176-09-08 03:54:00
93
+ - Item ID 51266: 3 measurements, 2176-09-05 04:27:00 to 2176-09-07 04:06:00
94
+ - Item ID 51267: 3 measurements, 2176-09-05 04:27:00 to 2176-09-07 04:06:00
95
+ - Item ID 51268: 3 measurements, 2176-09-05 04:27:00 to 2176-09-07 04:06:00
96
+ - Item ID 51274: 2 measurements, 2176-09-05 04:27:00 to 2176-09-08 03:54:00
97
+ - Item ID 51275: 2 measurements, 2176-09-05 04:27:00 to 2176-09-08 03:54:00
98
+ - Item ID 51277: 4 measurements, 2176-09-05 04:27:00 to 2176-09-08 03:54:00
99
+ - Item ID 51279: 4 measurements, 2176-09-05 04:27:00 to 2176-09-08 03:54:00
100
+ - Item ID 51287: 1 measurements, 2176-09-06 03:20:00 to 2176-09-06 03:20:00
101
+ - Item ID 51294: 2 measurements, 2176-09-05 04:27:00 to 2176-09-07 04:06:00
102
+ - Item ID 51301: 4 measurements, 2176-09-05 04:27:00 to 2176-09-08 03:54:00
103
+ - Item ID 51613: 1 measurements, 2176-09-05 04:27:00 to 2176-09-05 04:27:00
104
+ - Item ID 52033: 1 measurements, 2176-09-05 16:56:00 to 2176-09-05 16:56:00
105
+
106
+ CLINICAL NOTES:
107
+ [DISCHARGE NOTE]
108
+ Name: ___ Unit No: ___
109
+
110
+ Admission Date: ___ Discharge Date: ___
111
+
112
+ Date of Birth: ___ Sex: F
113
+
114
+ Service: MEDICINE
115
+
116
+ Allergies:
117
+ No Known Allergies / Adverse Drug Reactions
118
+
119
+ Attending: ___
120
+
121
+ Chief Complaint:
122
+ fever to 103, sepsis
123
+
124
+ Major Surgical or Invasive Procedure:
125
+ ___ line placement
126
+
127
+ History of Present Illness:
128
+ ___ ___ speaking dementia at baseline (waxes and wanes),
129
+ h/o HTN, HLD, fall and SDH presents from ___ with
130
+ fever to 103, and tachycardia to 130.
131
+ .
132
+ At ___ also noted to have ___ 311 and then 245.
133
+ .
134
+ In the ED, initial vs were: 99.2, 114, 102/52, 30, 100%/NRB. In
135
+ ED noted that Abd was distended and NT. Labs in ED showed UTI.
136
+
137
+ In the ED she received 2L IVF and was noted to have "180cc of
138
+ UOP". She was noted to have a lactate which decreased from 3.6
139
+ to 2.3. Labs significant for a Na of 146, creatinine of 1.4
140
+ (above baseline 0.7), WBC with 31.5 and 21% bands. CXR showed
141
+ small bilateral pleural effusions with possible mild vascular
142
+ congestion and bibasilar atelectasis. EKG showed sinus tach inf
143
+ TWI in III and avL new from ___. Urine and blood cultures were
144
+ sent. She was hemodynamically stable with VS on transfer: 99s,
145
+ HR 104, BP 110/56, RR 21, 100%/2L.
146
+
147
+ CT abd/pelvis showed massively dilated sigmoid up to 10 cm ___
148
+ fecal impaction w/o evidence of obstruction.
149
+ ___ pleural effusions w/ RLL atelectasis or consolidation.
150
+ Patient was given Vancomycin, Zosyn, rectal tylenol and 2L NS.
151
+ .
152
+ On the floor, she is well appearing and follows commands
153
+ appropriately.
154
+
155
+
156
+ Past Medical History:
157
+ s/pa SDH s/p ___
158
+ h/o anxiety, depression
159
+ FTT
160
+ Dementia, advanced
161
+ OA
162
+ choledochlolithiasis
163
+ HLD
164
+ HTN
165
+ herpes zoster
166
+ urinary incontenence
167
+ right pupil 8/fixed, left 1/fixed, ___ surgery
168
+
169
+ PSH:
170
+ s/p hepaticojejunostomy and CCY
171
+
172
+ Social History:
173
+ ___
174
+ Family History:
175
+ Non-contributory
176
+
177
+ Physical Exam:
178
+ PEx on admission to ICU:
179
+ Vitals: 97.8, 94, 110/56, 99%/3L
180
+ General: Alert, no acute distress , smiling
181
+ HEENT: Sclera anicteric, dry MM, oropharynx clear
182
+ Neck: supple, JVP flat
183
+ Lungs: Clear to auscultation bilaterally, no wheezes, rales,
184
+ rhonchi
185
+ CV: tachycardic and reg rhythm, normal S1 + S2, ___ SEM at RUSB
186
+ Abdomen: non-tender, very distended, no bowel sounds present, no
187
+ rebound tenderness or guarding, no organomegaly
188
+ GU: foley draining clear fluid
189
+ Ext: warm, well perfused, 2+ pulses, no clubbing, cyanosis or
190
+ edema
191
+
192
+ Pertinent Results:
193
+ ADMISSION LABS:
194
+
195
+ ___ 08:35PM LACTATE-2.3*
196
+ ___ 07:20PM URINE BLOOD-MOD NITRITE-NEG PROTEIN-30
197
+ GLUCOSE-NEG KETONE-NEG BILIRUBIN-NEG UROBILNGN-4* PH-5.0 LEUK-SM
198
+
199
+ ___ 07:20PM URINE RBC-24* WBC-13* BACTERIA-FEW YEAST-NONE
200
+ EPI-3
201
+ ___ 07:14PM ALT(SGPT)-22 AST(SGOT)-26 ALK PHOS-135* TOT
202
+ BILI-0.5
203
+ ___ 07:14PM WBC-31.5*# RBC-3.49* HGB-9.4*# HCT-29.4*#
204
+ MCV-84 MCH-26.8* MCHC-31.8 RDW-16.5*
205
+ ___ 07:14PM NEUTS-72* BANDS-21* LYMPHS-4* MONOS-2 EOS-0
206
+ BASOS-0 ATYPS-1* ___ MYELOS-0
207
+ ___ 07:13PM LACTATE-3.6*
208
+
209
+ IMAGING:
210
+ CXR ___: IMPRESSION:
211
+ 1. Small bilateral pleural effusions with possible mild vascular
212
+ congestion.
213
+ 2. Bibasilar atelectasis or consolidation.
214
+
215
+ CT Ab/Pelvis ___ IMPRESSION:
216
+ 1. Bilateral atelectasis or consolidation, with small pleural
217
+ effusions.
218
+ 2. Marked sigmoid distention up to 10 cm, likely secondary to
219
+ fecal
220
+ impaction, though other causes such as ischemia are not entirely
221
+ excluded.
222
+ 3. Hepaticojejunostomy changes, with intact Roux-en-Y limb and
223
+ no evidence of
224
+ obstruction. Small amount of perihepatic free fluid,
225
+ non-specific.
226
+ 4. Pancreatic cystic lesion most likely representing IPMN. If
227
+ clinically
228
+ appropriate, given patient age, could be further evaluated on
229
+ MRCP.
230
+ 5. Diffuse atherosclerosis.
231
+
232
+ ECHO ___ The left atrium is elongated. The right atrium is
233
+ moderately dilated. Left ventricular wall thicknesses are
234
+ normal. The left ventricular cavity size is normal. Left
235
+ ventricular systolic function is hyperdynamic (EF>75%). Tissue
236
+ Doppler imaging suggests an increased left ventricular filling
237
+ pressure (PCWP>18mmHg). A mid-cavitary gradient is identified.
238
+ An apical intracavitary gradient is identified. The right
239
+ ventricular free wall is hypertrophied. Right ventricular
240
+ chamber size is normal. with borderline normal free wall
241
+ function. There is abnormal septal motion/position consistent
242
+ with right ventricular pressure/volume overload. The aortic
243
+ valve leaflets are moderately thickened. There is mild aortic
244
+ valve stenosis (valve area 1.5 cm2). No aortic regurgitation is
245
+ seen. The mitral valve leaflets are mildly thickened. There is
246
+ no mitral valve prolapse. Mild (1+) mitral regurgitation is
247
+ seen. The tricuspid valve leaflets are mildly thickened.
248
+ Moderate [2+] tricuspid regurgitation is seen. There is moderate
249
+ pulmonary artery systolic hypertension. The main pulmonary
250
+ artery is dilated. The branch pulmonary arteries are dilated.
251
+ There is no pericardial effusion.
252
+
253
+ IMPRESSION: no vegetations seen
254
+
255
+ ___ Renal U/S: IMPRESSION: Normal left kidney. Lower pole of
256
+ the right kidney could not be
257
+ adequately visualized on ultrasound, but no obvious
258
+ hydronephrosis seen.
259
+
260
+ ___ Head CT:
261
+ IMPRESSION: No acute intracranial abnormality.
262
+
263
+ ___ CXR: IMPRESSION:
264
+ 1. Satisfactory position of peripherally inserted central venous
265
+ catheter
266
+ wire tip, although the distal floppy tip is obscured by
267
+ overlying cardiac
268
+ electrode.
269
+ 2. Enlarging bilateral moderately large pleural effusions.
270
+
271
+
272
+ Brief Hospital Course:
273
+ ___ yo F with dementia, HTN, h/o falls p/w fever to 103 and
274
+ bandemia in setting of UTI and fecal impaction, found to have
275
+ polymicrobial bacteremia and shock.
276
+ .
277
+ Briefly, patient was admitted with lethargy, hypoxia, fever,
278
+ elevated lactate and leukocytosis with bandemia, UA positive for
279
+ WBC and bacteria, and was also noted to have large fecal
280
+ impaction (not obstruction) on CT abd/pelvis. She was started
281
+ on broad coverage for HCAP, UTI, and potential GI source
282
+ (including C.dif) with Vanc/Zosyn/Azithromycin/Flagyl. CXR was
283
+ negative for acute lung process. C.dif was negative, so Flagyl
284
+ was discontinued on HD3. Non-contrast head CT was negative.
285
+ Urine cultures returned with GNR, further speciated on HD3 to
286
+ E.coli resistant to Zosyn, so patient was transitioned to
287
+ Ceftriaxone per sensitivities. However, she also grew GPC
288
+ (streptococcus species) and GNR from blood cultures. TTE was
289
+ negative for vegetations. Episodes of hypotension, tachycardia,
290
+ hypoxia felt to be related to sepsis and general inflammatory
291
+ process with cytokine release. For fecal impaction, attempted
292
+ Fleets enema, lactulose, soaps enema, mineral enema, manual
293
+ disimpaction, all without complete success. GI consulted, but
294
+ no procedure indicated. Developed progressive acute renal
295
+ failure, likely related to hypotension and hypovolemia, but
296
+ patient was aggressive hydrated but without benefit. Multiple
297
+ discussions on goals of care were held with HCP (son), and
298
+ decision was made for comfort measures only on HD5. The patient
299
+ passed away peacefully on ___ at 12:24PM.
300
+
301
+
302
+ Medications on Admission:
303
+ Vitamin D 50,000 unit Cap Oral due ___
304
+ .
305
+ Aspir-81 81 mg Tab Oral
306
+ 1 Tablet, Delayed Release (E.C.)(s) Once Daily
307
+ .
308
+ senna 8.6 mg Cap Oral
309
+ .
310
+ azo cranberry
311
+ 450-30-50 Twice Daily
312
+ .
313
+ Colace 100 mg Cap Oral
314
+ 1 Capsule(s) Twice Daily
315
+ .
316
+ ursodiol 300 mg Cap Oral
317
+ 1 Capsule(s) Twice Daily
318
+ .
319
+ calcium carbonate-vitamin D3 -- Unknown Strength
320
+ 1 Tablet(s) Twice Daily
321
+ .
322
+ risperidone 0.5 mg Tab Oral
323
+ 1 Tablet(s) qhs
324
+ .
325
+ ipratropium-albuterol 0.5 mg-3 mg(2.5 mg base)/3 mL Neb Solution
326
+ Inhalation
327
+ 1 Solution for Nebulization(s) Every ___ hrs, as needed
328
+ .
329
+ ___ 325 mg (65 mg Iron) Tab Oral
330
+ 1 Tablet(s) Twice Daily
331
+ .
332
+ cyanocobalamin (vitamin B-12) 1,000 mcg/mL Injection Injection
333
+ 1 Solution(s) q month due ___
334
+ .
335
+ bisacodyl prn
336
+ emulose prn
337
+ MOM prn
338
+ trazodone prn
339
+ acetaminophen prn
340
+ fleet enema prn
341
+ mechanical soft diet
342
+
343
+ Discharge Medications:
344
+ Expired
345
+
346
+ Discharge Disposition:
347
+ Expired
348
+
349
+ Discharge Diagnosis:
350
+ Expired
351
+
352
+ Discharge Condition:
353
+ Expired
354
+
355
+ Discharge Instructions:
356
+ Expired
357
+
358
+ Followup Instructions:
359
+ ___
360
+
361
+ [RADIOLOGY NOTE]
362
+ INDICATION: ___ female with increased breath sounds and fever.
363
+
364
+ ___.
365
+
366
+ CHEST, AP, SEMI-UPRIGHT: Mild vascular congestion and interstitial edema has
367
+ developed, with small bilateral pleural effusions. There is bibasilar
368
+ atelectasis or consolidation. Mild cardiomegaly is present, with a tortuous
369
+ and calcified aorta. There is no free air under the diaphragm. The bones are
370
+ diffusely demineralized.
371
+
372
+ IMPRESSION:
373
+ 1. Small bilateral pleural effusions with possible mild vascular congestion.
374
+ 2. Bibasilar atelectasis or consolidation.
375
+
376
+ [RADIOLOGY NOTE]
377
+ INDICATION: ___ female with distended abdomen and leukocytosis.
378
+
379
+ ___.
380
+
381
+ TECHNIQUE: Helical MDCT images were acquired from the lung bases through the
382
+ greater trochanters with intravenous and without oral contrast. 5-mm axial,
383
+ coronal, and sagittal multiplanar reformats were generated.
384
+
385
+ FINDINGS: Mild bibasilar atelectasis or consolidation is present, along with
386
+ small bilateral pleural effusions. The heart is normal in size, with trace
387
+ pericardial effusion. Dense calcifications are noted in the thoracic aorta
388
+ and coronary arteries.
389
+
390
+ ABDOMEN: A trace amount of free fluid is present in the abdomen, concentrated
391
+ in the perihepatic region. The liver enhances normally. Note is made of
392
+ intrahepatic pneumobilia. Changes of Roux-en-Y hepaticojejunostomy are
393
+ present, with anastomotic suture line in the right abdomen, and no evidence of
394
+ bowel dilation to suggest obstruction. The gallbladder is surgically absent.
395
+ Scattered cystic lesions are again noted in the pancreas, likely representing
396
+ IPMN. There is no intra- or extrahepatic biliary ductal dilation. The spleen
397
+ is normal in size.
398
+
399
+ Left adrenal appears slightly full, without discrete nodules identified.
400
+ Right adrenal is normal. The kidneys enhance promptly and symmetrically,
401
+ without masses or hydronephrosis. Note is made of bilateral extrarenal
402
+ pelves.
403
+
404
+ The stomach and small bowel are relatively decompressed.
405
+
406
+ PELVIS: The appendix is normal. A moderate amount of retained fecal material
407
+ is noted in the colon. There is massive dilation of the sigmoid colon up to
408
+ 10 cm, presumably secondary to significant fecal impaction. There is no bowel
409
+ wall thinning, abnormal enhancement, or pneumatosis to suggest ischemia. No
410
+ extraluminal air/fluid collections are present to suggest perforation. No
411
+ portal or mesenteric venous gas is present.
412
+
413
+ Foley catheter is present in a collapsed bladder. The uterus is atrophic.
414
+
415
+ Scattered calcifications and soft plaques are noted throughout the abdominal
416
+ aorta, with moderate stenosis of branch vessel origins. Retroperitoneal and
417
+ mesenteric lymph nodes are not pathologically enlarged.
418
+
419
+ Bones are diffusely demineralized, with moderate multilevel degenerative
420
+ changes. Note is made of transitional lumbosacral anatomy. L1 compression
421
+ fracture has progressed, with 60% loss of height. New interval L2 compression
422
+ fracture is also present, with 60% loss of height. There is minimal
423
+ anterolisthesis at L5-S1. Moderate diffuse disc bulges are present at
424
+ multiple levels, most significant at L5-S1, with abutment of the thecal sac
425
+ outline. Please note that CT cannot visualize intrathecal detail. No
426
+ suspicious lytic or sclerotic osseous lesions are identified. There is
427
+ diffuse fatty atrophy of the paraspinal and thoracoabdominal wall musculature.
428
+ Calcified injection granulomas are noted in the right gluteus.
429
+
430
+ IMPRESSION:
431
+ 1. Bilateral atelectasis or consolidation, with small pleural effusions.
432
+ 2. Marked sigmoid distention up to 10 cm, likely secondary to fecal
433
+ impaction, though other causes such as ischemia are not entirely excluded.
434
+ 3. Hepaticojejunostomy changes, with intact Roux-en-Y limb and no evidence of
435
+ obstruction. Small amount of perihepatic free fluid, non-specific.
436
+ 4. Pancreatic cystic lesion most likely representing IPMN. If clinically
437
+ appropriate, given patient age, could be further evaluated on MRCP.
438
+ 5. Diffuse atherosclerosis.
439
+
440
+ [RADIOLOGY NOTE]
441
+ INDICATION: ___ female with worsening renal failure. Ultrasound of
442
+ the kidneys to rule out urinary obstruction.
443
+
444
+ COMPARISON: CT abdomen and pelvis ___.
445
+
446
+ FINDINGS: The left kidney measures 10.3 cm. There is no focal lesion or
447
+ hydronephrosis. The lower pole of the right kidney could not be adequately
448
+ visualized because of the overlying bowel gases. The upper and mid poles
449
+ appear normal with no hydronephrosis or calculi. Based on the recent CT scan
450
+ done on ___, no structural lesion or hydronephrosis was visualized in the
451
+ right kidney. The urinary bladder is empty with a Foley catheter in situ.
452
+
453
+ IMPRESSION: Normal left kidney. Lower pole of the right kidney could not be
454
+ adequately visualized on ultrasound, but no obvious hydronephrosis seen.
455
+
456
+ [RADIOLOGY NOTE]
457
+ INDICATION: Altered mental status.
458
+
459
+ COMPARISON: ___.
460
+
461
+ TECHNIQUE: Contiguous axial MDCT-acquired images of the head were obtained
462
+ without administration of intravenous contrast. Several sequences were
463
+ degraded by motion artifact and were repeated with better result.
464
+
465
+ FINDINGS: There is no hemorrhage. There is no evidence of major acute
466
+ vascular territorial infarction, allowing for the extensive periventricular
467
+ white matter hypodensities, likely the sequelae of chronic small vessel
468
+ ischemic disease. More focal hypodensity in the right frontal region may
469
+ represent encephalomalacia related to remote cortical infarct. The ventricles
470
+ and sulci are prominent in size and configuration, likely due to age-related
471
+ global parenchymal atrophy.
472
+
473
+ The visualized paranasal sinuses and mastoid air cells are clear.
474
+
475
+ IMPRESSION: No acute intracranial abnormality.
476
+
477
+ [RADIOLOGY NOTE]
478
+ INDICATION: Recently inserted peripherally inserted central venous catheter.
479
+ Background of altered mental status.
480
+
481
+ COMPARISON: Radiographs dated back to ___ and most recently ___.
482
+
483
+ FINDINGS: Bilateral moderately large pleural effusions have increased in size
484
+ since ___. Hazy opacity in the right lung is most likely due to
485
+ posteriorly layering fluid. Retrocardiac linear opacity is unchanged since
486
+ ___ and is consistent with a tortuous thoracic descending aorta. Mild
487
+ cardiomegaly is stable. The newly inserted left upper extremity peripherally
488
+ inserted central venous catheter tip is obscured by an overlying cardiac
489
+ electrode with the distal tip of the wire lies at the lower SVC.
490
+
491
+ Wedge compression fractures of L1 and L2 are associated with moderately severe
492
+ loss of vertebral height, unchanged since ___.
493
+
494
+ IMPRESSION:
495
+ 1. Satisfactory position of peripherally inserted central venous catheter
496
+ wire tip, although the distal floppy tip is obscured by overlying cardiac
497
+ electrode.
498
+ 2. Enlarging bilateral moderately large pleural effusions.
499
+
500
+ Results regarding the peripherally inserted central venous catheter
501
+ communicated to ___, venous access nurse practitioner, at approximately
502
+ 1430 hours, ___.
summaries/subject_16139570_hadm_23551539_model_input.txt ADDED
@@ -0,0 +1,532 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ PRE-OPERATIVE SUMMARY INPUT (SINGLE ADMISSION):
2
+
3
+ PATIENT:
4
+ - Age: 91
5
+ - Gender: F
6
+
7
+ ADMISSION:
8
+ - Admission ID: 23551539
9
+ - Admission Type: EW EMER.
10
+ - Admission Location: EMERGENCY ROOM
11
+ - Discharge Location: DIED
12
+ - Insurance: Medicare
13
+ - Race: ASIAN - CHINESE
14
+ - Marital Status: WIDOWED
15
+ - Language: ?
16
+
17
+ PROCEDURES (1 total):
18
+ 1. ICD-9: 3897
19
+
20
+ DIAGNOSES (16 total):
21
+ 1. ICD-9: 0389
22
+ 2. ICD-9: 78552
23
+ 3. ICD-9: 5990
24
+ 4. ICD-9: 5849
25
+ 5. ICD-9: 2762
26
+ 6. ICD-9: 5180
27
+ 7. ICD-9: 49121
28
+ 8. ICD-9: 99592
29
+ 9. ICD-9: 0414
30
+ 10. ICD-9: 42731
31
+ 11. ICD-9: 27652
32
+ 12. ICD-9: 28529
33
+ 13. ICD-9: 2948
34
+ 14. ICD-9: 4019
35
+ 15. ICD-9: 2724
36
+ 16. ICD-9: 56032
37
+
38
+ LABORATORY RESULTS:
39
+ Total laboratory events: 186
40
+ Most frequent lab tests:
41
+ - Item ID 50868: 5 measurements
42
+ - Item ID 50882: 5 measurements
43
+ - Item ID 50893: 5 measurements
44
+ - Item ID 50902: 5 measurements
45
+ - Item ID 50912: 5 measurements
46
+
47
+ CLINICAL NOTES:
48
+ [DISCHARGE]
49
+ Name: ___ Unit No: ___
50
+
51
+ Admission Date: ___ Discharge Date: ___
52
+
53
+ Date of Birth: ___ Sex: F
54
+
55
+ Service: MEDICINE
56
+
57
+ Allergies:
58
+ No Known Allergies / Adverse Drug Reactions
59
+
60
+ Attending: ___
61
+
62
+ Chief Complaint:
63
+ fever to 103, sepsis
64
+
65
+ Major Surgical or Invasive Procedure:
66
+ ___ line placement
67
+
68
+ History of Present Illness:
69
+ ___ ___ speaking dementia at baseline (waxes and wanes),
70
+ h/o HTN, HLD, fall and SDH presents from ___ with
71
+ fever to 103, and tachycardia to 130.
72
+ .
73
+ At ___ also noted to have ___ 311 and then 245.
74
+ .
75
+ In the ED, initial vs were: 99.2, 114, 102/52, 30, 100%/NRB. In
76
+ ED noted that Abd was distended and NT. Labs in ED showed UTI.
77
+
78
+ In the ED she received 2L IVF and was noted to have "180cc of
79
+ UOP". She was noted to have a lactate which decreased from 3.6
80
+ to 2.3. Labs significant for a Na of 146, creatinine of 1.4
81
+ (above baseline 0.7), WBC with 31.5 and 21% bands. CXR showed
82
+ small bilateral pleural effusions with possible mild vascular
83
+ congestion and bibasilar atelectasis. EKG showed sinus tach inf
84
+ TWI in III and avL new from ___. Urine and blood cultures were
85
+ sent. She was hemodynamically stable with VS on transfer: 99s,
86
+ HR 104, BP 110/56, RR 21, 100%/2L.
87
+
88
+ CT abd/pelvis showed massively dilated sigmoid up to 10 cm ___
89
+ fecal impaction w/o evidence of obstruction.
90
+ ___ pleural effusions w/ RLL atelectasis or consolidation.
91
+ Patient was given Vancomycin, Zosyn, rectal tylenol and 2L NS.
92
+ .
93
+ On the floor, she is well appearing and follows commands
94
+ appropriately.
95
+
96
+
97
+ Past Medical History:
98
+ s/pa SDH s/p ___
99
+ h/o anxiety, depression
100
+ FTT
101
+ Dementia, advanced
102
+ OA
103
+ choledochlolithiasis
104
+ HLD
105
+ HTN
106
+ herpes zoster
107
+ urinary incontenence
108
+ right pupil 8/fixed, left 1/fixed, ___ surgery
109
+
110
+ PSH:
111
+ s/p hepaticojejunostomy and CCY
112
+
113
+ Social History:
114
+ ___
115
+ Family History:
116
+ Non-contributory
117
+
118
+ Physical Exam:
119
+ PEx on admission to ICU:
120
+ Vitals: 97.8, 94, 110/56, 99%/3L
121
+ General: Alert, no acute distress , smiling
122
+ HEENT: Sclera anicteric, dry MM, oropharynx clear
123
+ Neck: supple, JVP flat
124
+ Lungs: Clear to auscultation bilaterally, no wheezes, rales,
125
+ rhonchi
126
+ CV: tachycardic and reg rhythm, normal S1 + S2, ___ SEM at RUSB
127
+ Abdomen: non-tender, very distended, no bowel sounds present, no
128
+ rebound tenderness or guarding, no organomegaly
129
+ GU: foley draining clear fluid
130
+ Ext: warm, well perfused, 2+ pulses, no clubbing, cyanosis or
131
+ edema
132
+
133
+ Pertinent Results:
134
+ ADMISSION LABS:
135
+
136
+ ___ 08:35PM LACTATE-2.3*
137
+ ___ 07:20PM URINE BLOOD-MOD NITRITE-NEG PROTEIN-30
138
+ GLUCOSE-NEG KETONE-NEG BILIRUBIN-NEG UROBILNGN-4* PH-5.0 LEUK-SM
139
+
140
+ ___ 07:20PM URINE RBC-24* WBC-13* BACTERIA-FEW YEAST-NONE
141
+ EPI-3
142
+ ___ 07:14PM ALT(SGPT)-22 AST(SGOT)-26 ALK PHOS-135* TOT
143
+ BILI-0.5
144
+ ___ 07:14PM WBC-31.5*# RBC-3.49* HGB-9.4*# HCT-29.4*#
145
+ MCV-84 MCH-26.8* MCHC-31.8 RDW-16.5*
146
+ ___ 07:14PM NEUTS-72* BANDS-21* LYMPHS-4* MONOS-2 EOS-0
147
+ BASOS-0 ATYPS-1* ___ MYELOS-0
148
+ ___ 07:13PM LACTATE-3.6*
149
+
150
+ IMAGING:
151
+ CXR ___: IMPRESSION:
152
+ 1. Small bilateral pleural effusions with possible mild vascular
153
+ congestion.
154
+ 2. Bibasilar atelectasis or consolidation.
155
+
156
+ CT Ab/Pelvis ___ IMPRESSION:
157
+ 1. Bilateral atelectasis or consolidation, with small pleural
158
+ effusions.
159
+ 2. Marked sigmoid distention up to 10 cm, likely secondary to
160
+ fecal
161
+ impaction, though other causes such as ischemia are not entirely
162
+ excluded.
163
+ 3. Hepaticojejunostomy changes, with intact Roux-en-Y limb and
164
+ no evidence of
165
+ obstruction. Small amount of perihepatic free fluid,
166
+ non-specific.
167
+ 4. Pancreatic cystic lesion most likely representing IPMN. If
168
+ clinically
169
+ appropriate, given patient age, could be further evaluated on
170
+ MRCP.
171
+ 5. Diffuse atherosclerosis.
172
+
173
+ ECHO ___ The left atrium is elongated. The right atrium is
174
+ moderately dilated. Left ventricular wall thicknesses are
175
+ normal. The left ventricular cavity size is normal. Left
176
+ ventricular systolic function is hyperdynamic (EF>75%). Tissue
177
+ Doppler imaging suggests an increased left ventricular filling
178
+ pressure (PCWP>18mmHg). A mid-cavitary gradient is identified.
179
+ An apical intracavitary gradient is identified. The right
180
+ ventricular free wall is hypertrophied. Right ventricular
181
+ chamber size is normal. with borderline normal free wall
182
+ function. There is abnormal septal motion/position consistent
183
+ with right ventricular pressure/volume overload. The aortic
184
+ valve leaflets are moderately thickened. There is mild aortic
185
+ valve stenosis (valve area 1.5 cm2). No aortic regurgitation is
186
+ seen. The mitral valve leaflets are mildly thickened. There is
187
+ no mitral valve prolapse. Mild (1+) mitral regurgitation is
188
+ seen. The tricuspid valve leaflets are mildly thickened.
189
+ Moderate [2+] tricuspid regurgitation is seen. There is moderate
190
+ pulmonary artery systolic hypertension. The main pulmonary
191
+ artery is dilated. The branch pulmonary arteries are dilated.
192
+ There is no pericardial effusion.
193
+
194
+ IMPRESSION: no vegetations seen
195
+
196
+ ___ Renal U/S: IMPRESSION: Normal left kidney. Lower pole of
197
+ the right kidney could not be
198
+ adequately visualized on ultrasound, but no obvious
199
+ hydronephrosis seen.
200
+
201
+ ___ Head CT:
202
+ IMPRESSION: No acute intracranial abnormality.
203
+
204
+ ___ CXR: IMPRESSION:
205
+ 1. Satisfactory position of peripherally inserted central venous
206
+ catheter
207
+ wire tip, although the distal floppy tip is obscured by
208
+ overlying cardiac
209
+ electrode.
210
+ 2. Enlarging bilateral moderately large pleural effusions.
211
+
212
+
213
+ Brief Hospital Course:
214
+ ___ yo F with dementia, HTN, h/o falls p/w fever to 103 and
215
+ bandemia in setting of UTI and fecal impaction, found to have
216
+ polymicrobial bacteremia and shock.
217
+ .
218
+ Briefly, patient was admitted with lethargy, hypoxia, fever,
219
+ elevated lactate and leukocytosis with bandemia, UA positive for
220
+ WBC and bacteria, and was also noted to have large fecal
221
+ impaction (not obstruction) on CT abd/pelvis. She was started
222
+ on broad coverage for HCAP, UTI, and potential GI source
223
+ (including C.dif) with Vanc/Zosyn/Azithromycin/Flagyl. CXR was
224
+ negative for acute lung process. C.dif was negative, so Flagyl
225
+ was discontinued on HD3. Non-contrast head CT was negative.
226
+ Urine cultures returned with GNR, further speciated on HD3 to
227
+ E.coli resistant to Zosyn, so patient was transitioned to
228
+ Ceftriaxone per sensitivities. However, she also grew GPC
229
+ (streptococcus species) and GNR from blood cultures. TTE was
230
+ negative for vegetations. Episodes of hypotension, tachycardia,
231
+ hypoxia felt to be related to sepsis and general inflammatory
232
+ process with cytokine release. For fecal impaction, attempted
233
+ Fleets enema, lactulose, soaps enema, mineral enema, manual
234
+ disimpaction, all without complete success. GI consulted, but
235
+ no procedure indicated. Developed progressive acute renal
236
+ failure, likely related to hypotension and hypovolemia, but
237
+ patient was aggressive hydrated but without benefit. Multiple
238
+ discussions on goals of care were held with HCP (son), and
239
+ decision was made for comfort measures only on HD5. The patient
240
+ passed away peacefully on ___ at 12:24PM.
241
+
242
+
243
+ Medications on Admission:
244
+ Vitamin D 50,000 unit Cap Oral due ___
245
+ .
246
+ Aspir-81 81 mg Tab Oral
247
+ 1 Tablet, Delayed Release (E.C.)(s) Once Daily
248
+ .
249
+ senna 8.6 mg Cap Oral
250
+ .
251
+ azo cranberry
252
+ 450-30-50 Twice Daily
253
+ .
254
+ Colace 100 mg Cap Oral
255
+ 1 Capsule(s) Twice Daily
256
+ .
257
+ ursodiol 300 mg Cap Oral
258
+ 1 Capsule(s) Twice Daily
259
+ .
260
+ calcium carbonate-vitamin D3 -- Unknown Strength
261
+ 1 Tablet(s) Twice Daily
262
+ .
263
+ risperidone 0.5 mg Tab Oral
264
+ 1 Tablet(s) qhs
265
+ .
266
+ ipratropium-albuterol 0.5 mg-3 mg(2.5 mg base)/3 mL Neb Solution
267
+ Inhalation
268
+ 1 Solution for Nebulization(s) Every ___ hrs, as needed
269
+ .
270
+ ___ 325 mg (65 mg Iron) Tab Oral
271
+ 1 Tablet(s) Twice Daily
272
+ .
273
+ cyanocobalamin (vitamin B-12) 1,000 mcg/mL Injection Injection
274
+ 1 Solution(s) q month due ___
275
+ .
276
+ bisacodyl prn
277
+ emulose prn
278
+ MOM prn
279
+ trazodone prn
280
+ acetaminophen prn
281
+ fleet enema prn
282
+ mechanical soft diet
283
+
284
+ Discharge Medications:
285
+ Expired
286
+
287
+ Discharge Disposition:
288
+ Expired
289
+
290
+ Discharge Diagnosis:
291
+ Expired
292
+
293
+ Discharge Condition:
294
+ Expired
295
+
296
+ Discharge Instructions:
297
+ Expired
298
+
299
+ Followup Instructions:
300
+ ___
301
+
302
+
303
+ [RADIOLOGY] INDICATION: ___ female with increased breath sounds and fever.
304
+
305
+ ___.
306
+
307
+ CHEST, AP, SEMI-UPRIGHT: Mild vascular congestion and interstitial edema has
308
+ developed, with small bilateral pleural effusions. There is bibasilar
309
+ atelectasis or consolidation. Mild cardiomegaly is present, with a tortuous
310
+ and calcified aorta. There is no free air under the diaphragm. The bones are
311
+ diffusely demineralized.
312
+
313
+ IMPRESSION:
314
+ 1. Small bilateral pleural effusions with possible mild vascular congestion.
315
+ 2. Bibasilar atelectasis or consolidation.
316
+
317
+
318
+ [RADIOLOGY] INDICATION: ___ female with distended abdomen and leukocytosis.
319
+
320
+ ___.
321
+
322
+ TECHNIQUE: Helical MDCT images were acquired from the lung bases through the
323
+ greater trochanters with intravenous and without oral contrast. 5-mm axial,
324
+ coronal, and sagittal multiplanar reformats were generated.
325
+
326
+ FINDINGS: Mild bibasilar atelectasis or consolidation is present, along with
327
+ small bilateral pleural effusions. The heart is normal in size, with trace
328
+ pericardial effusion. Dense calcifications are noted in the thoracic aorta
329
+ and coronary arteries.
330
+
331
+ ABDOMEN: A trace amount of free fluid is present in the abdomen, concentrated
332
+ in the perihepatic region. The liver enhances normally. Note is made of
333
+ intrahepatic pneumobilia. Changes of Roux-en-Y hepaticojejunostomy are
334
+ present, with anastomotic suture line in the right abdomen, and no evidence of
335
+ bowel dilation to suggest obstruction. The gallbladder is surgically absent.
336
+ Scattered cystic lesions are again noted in the pancreas, likely representing
337
+ IPMN. There is no intra- or extrahepatic biliary ductal dilation. The spleen
338
+ is normal in size.
339
+
340
+ Left adrenal appears slightly full, without discrete nodules identified.
341
+ Right adrenal is normal. The kidneys enhance promptly and symmetrically,
342
+ without masses or hydronephrosis. Note is made of bilateral extrarenal
343
+ pelves.
344
+
345
+ The stomach and small bowel are relatively decompressed.
346
+
347
+ PELVIS: The appendix is normal. A moderate amount of retained fecal material
348
+ is noted in the colon. There is massive dilation of the sigmoid colon up to
349
+ 10 cm, presumably secondary to significant fecal impaction. There is no bowel
350
+ wall thinning, abnormal enhancement, or pneumatosis to suggest ischemia. No
351
+ extraluminal air/fluid collections are present to suggest perforation. No
352
+ portal or mesenteric venous gas is present.
353
+
354
+ Foley catheter is present in a collapsed bladder. The uterus is atrophic.
355
+
356
+ Scattered calcifications and soft plaques are noted throughout the abdominal
357
+ aorta, with moderate stenosis of branch vessel origins. Retroperitoneal and
358
+ mesenteric lymph nodes are not pathologically enlarged.
359
+
360
+ Bones are diffusely demineralized, with moderate multilevel degenerative
361
+ changes. Note is made of transitional lumbosacral anatomy. L1 compression
362
+ fracture has progressed, with 60% loss of height. New interval L2 compression
363
+ fracture is also present, with 60% loss of height. There is minimal
364
+ anterolisthesis at L5-S1. Moderate diffuse disc bulges are present at
365
+ multiple levels, most significant at L5-S1, with abutment of the thecal sac
366
+ outline. Please note that CT cannot visualize intrathecal detail. No
367
+ suspicious lytic or sclerotic osseous lesions are identified. There is
368
+ diffuse fatty atrophy of the paraspinal and thoracoabdominal wall musculature.
369
+ Calcified injection granulomas are noted in the right gluteus.
370
+
371
+ IMPRESSION:
372
+ 1. Bilateral atelectasis or consolidation, with small pleural effusions.
373
+ 2. Marked sigmoid distention up to 10 cm, likely secondary to fecal
374
+ impaction, though other causes such as ischemia are not entirely excluded.
375
+ 3. Hepaticojejunostomy changes, with intact Roux-en-Y limb and no evidence of
376
+ obstruction. Small amount of perihepatic free fluid, non-specific.
377
+ 4. Pancreatic cystic lesion most likely representing IPMN. If clinically
378
+ appropriate, given patient age, could be further evaluated on MRCP.
379
+ 5. Diffuse atherosclerosis.
380
+
381
+
382
+ [RADIOLOGY] INDICATION: ___ female with worsening renal failure. Ultrasound of
383
+ the kidneys to rule out urinary obstruction.
384
+
385
+ COMPARISON: CT abdomen and pelvis ___.
386
+
387
+ FINDINGS: The left kidney measures 10.3 cm. There is no focal lesion or
388
+ hydronephrosis. The lower pole of the right kidney could not be adequately
389
+ visualized because of the overlying bowel gases. The upper and mid poles
390
+ appear normal with no hydronephrosis or calculi. Based on the recent CT scan
391
+ done on ___, no structural lesion or hydronephrosis was visualized in the
392
+ right kidney. The urinary bladder is empty with a Foley catheter in situ.
393
+
394
+ IMPRESSION: Normal left kidney. Lower pole of the right kidney could not be
395
+ adequately visualized on ultrasound, but no obvious hydronephrosis seen.
396
+
397
+
398
+ [RADIOLOGY] INDICATION: Altered mental status.
399
+
400
+ COMPARISON: ___.
401
+
402
+ TECHNIQUE: Contiguous axial MDCT-acquired images of the head were obtained
403
+ without administration of intravenous contrast. Several sequences were
404
+ degraded by motion artifact and were repeated with better result.
405
+
406
+ FINDINGS: There is no hemorrhage. There is no evidence of major acute
407
+ vascular territorial infarction, allowing for the extensive periventricular
408
+ white matter hypodensities, likely the sequelae of chronic small vessel
409
+ ischemic disease. More focal hypodensity in the right frontal region may
410
+ represent encephalomalacia related to remote cortical infarct. The ventricles
411
+ and sulci are prominent in size and configuration, likely due to age-related
412
+ global parenchymal atrophy.
413
+
414
+ The visualized paranasal sinuses and mastoid air cells are clear.
415
+
416
+ IMPRESSION: No acute intracranial abnormality.
417
+
418
+
419
+ [RADIOLOGY] INDICATION: Recently inserted peripherally inserted central venous catheter.
420
+ Background of altered mental status.
421
+
422
+ COMPARISON: Radiographs dated back to ___ and most recently ___.
423
+
424
+ FINDINGS: Bilateral moderately large pleural effusions have increased in size
425
+ since ___. Hazy opacity in the right lung is most likely due to
426
+ posteriorly layering fluid. Retrocardiac linear opacity is unchanged since
427
+ ___ and is consistent with a tortuous thoracic descending aorta. Mild
428
+ cardiomegaly is stable. The newly inserted left upper extremity peripherally
429
+ inserted central venous catheter tip is obscured by an overlying cardiac
430
+ electrode with the distal tip of the wire lies at the lower SVC.
431
+
432
+ Wedge compression fractures of L1 and L2 are associated with moderately severe
433
+ loss of vertebral height, unchanged since ___.
434
+
435
+ IMPRESSION:
436
+ 1. Satisfactory position of peripherally inserted central venous catheter
437
+ wire tip, although the distal floppy tip is obscured by overlying cardiac
438
+ electrode.
439
+ 2. Enlarging bilateral moderately large pleural effusions.
440
+
441
+ Results regarding the peripherally inserted central venous catheter
442
+ communicated to ___, venous access nurse practitioner, at approximately
443
+ 1430 hours, ___.
444
+
445
+ PROCEDURES (readable):
446
+ - 3897 (ICD-9) — Central venous catheter placement with guidance
447
+
448
+ DIAGNOSES (readable):
449
+ - 0389 (ICD-9) — Unspecified septicemia
450
+ - 78552 (ICD-9) — Septic shock
451
+ - 5990 (ICD-9) — Urinary tract infection, site not specified
452
+ - 5849 (ICD-9) — Acute kidney failure, unspecified
453
+ - 2762 (ICD-9) — Acidosis
454
+ - 5180 (ICD-9) — Pulmonary collapse
455
+ - 49121 (ICD-9) — Obstructive chronic bronchitis with (acute) exacerbation
456
+ - 99592 (ICD-9) — Severe sepsis
457
+ - 0414 (ICD-9) — Escherichia coli [E. coli] infection in conditions classified elsewhere and of unspecified site
458
+ - 42731 (ICD-9) — Atrial fibrillation
459
+ - 27652 (ICD-9) — Hypovolemia
460
+ - 28529 (ICD-9) — Anemia of other chronic disease
461
+ - 2948 (ICD-9) — Other persistent mental disorders due to conditions classified elsewhere
462
+ - 4019 (ICD-9) — Unspecified essential hypertension
463
+ - 2724 (ICD-9) — Other and unspecified hyperlipidemia
464
+ - 56032 (ICD-9) — Fecal impaction
465
+
466
+ LAB ITEMS (readable, deduped):
467
+ - % Hemoglobin A1c (Item 50852)
468
+ - Albumin (Item 50862)
469
+ - Anion Gap (Item 50868)
470
+ - Anisocytosis (Item 51137)
471
+ - Atypical Lymphocytes (Item 51143)
472
+ - Bands (Item 51144)
473
+ - Base Excess (Item 50802)
474
+ - Basophils (Item 51146)
475
+ - Bicarbonate (Item 50882)
476
+ - Calcium, Total (Item 50893)
477
+ - Calculated Total CO2 (Item 50804)
478
+ - Chloride (Item 50902)
479
+ - Chloride, Urine (Item 51078)
480
+ - Creatine Kinase (CK) (Item 50910)
481
+ - Creatine Kinase, MB Isoenzyme (Item 50911)
482
+ - Creatinine (Item 50912)
483
+ - Creatinine, Urine (Item 51082)
484
+ - EDTA Hold (Item 50919)
485
+ - Eosinophils (Item 51200)
486
+ - Glucose (Item 50931)
487
+ - Hematocrit (Item 51221)
488
+ - Hemoglobin (Item 51222)
489
+ - Hypochromia (Item 51233)
490
+ - INR(PT) (Item 51237)
491
+ - Intubated (Item 50812)
492
+ - Lactate (Item 50813)
493
+ - Length of Urine Collection (Item 51087)
494
+ - Lymphocytes (Item 51244)
495
+ - MCH (Item 51248)
496
+ - MCHC (Item 51249)
497
+ - MCV (Item 51250)
498
+ - Macrocytes (Item 51246)
499
+ - Magnesium (Item 50960)
500
+ - Metamyelocytes (Item 51251)
501
+ - Microcytes (Item 51252)
502
+ - Monocytes (Item 51254)
503
+ - Myelocytes (Item 51255)
504
+ - Neutrophils (Item 51256)
505
+ - Osmolality, Urine (Item 51093)
506
+ - Ovalocytes (Item 51260)
507
+ - PT (Item 51274)
508
+ - PTT (Item 51275)
509
+ - Phosphate (Item 50970)
510
+ - Platelet Count (Item 51265)
511
+ - Platelet Smear (Item 51266)
512
+ - Poikilocytosis (Item 51267)
513
+ - Polychromasia (Item 51268)
514
+ - Potassium (Item 50971)
515
+ - Potassium, Urine (Item 51097)
516
+ - Potassium, Whole Blood (Item 50822)
517
+ - RDW (Item 51277)
518
+ - Red Blood Cells (Item 51279)
519
+ - Schistocytes (Item 51287)
520
+ - Sodium (Item 50983)
521
+ - Sodium, Urine (Item 51100)
522
+ - Specimen Type (Item 52033)
523
+ - Target Cells (Item 51294)
524
+ - Temperature (Item 50825)
525
+ - Troponin T (Item 51003)
526
+ - Urea Nitrogen (Item 51006)
527
+ - Vancomycin (Item 51009)
528
+ - White Blood Cells (Item 51301)
529
+ - eAG (Item 51613)
530
+ - pCO2 (Item 50818)
531
+ - pH (Item 50820)
532
+ - pO2 (Item 50821)
summaries/subject_16139570_hadm_23551539_summary.txt ADDED
@@ -0,0 +1,55 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ **Patient Summary**
2
+
3
+ * Age: 91
4
+ * Gender: Female
5
+ * Admission ID: 23551539
6
+ * Admission Type: Emergency Ward (EW EMER)
7
+ * Discharge Location: Deceased
8
+ * Insurance: Medicare
9
+ * Race: Asian-Chinese
10
+ * Marital Status: Widow
11
+ * Language: Unknown
12
+
13
+ **Clinical Summary**
14
+
15
+ The patient was admitted to the emergency ward with a chief complaint of fever to 103°F, sepsis, and a history of falls with a subdural hematoma (SDH). She was found to have a urinary tract infection (UTI), fecal impaction, and polymicrobial bacteremia. The patient was started on broad-spectrum antibiotics, including vancomycin, zosyn, and azithromycin. Despite aggressive hydration and supportive care, the patient developed progressive acute renal failure and eventually succumbed to the illness.
16
+
17
+ **Laboratory Results**
18
+
19
+ * Complete Blood Count (CBC): 31.5 WBC, 21% bands, 3.49 RBC, 9.4 HGB, 29.4 HCT
20
+ * Electrolytes: Sodium 146, Potassium 4.1, Chloride 104, Phosphate 3.5
21
+ * Liver Function Tests (LFTs): ALT 22, AST 26, ALK Phos 135
22
+ * Kidney Function Tests (KFTs): Creatinine 1.4, Urea Nitrogen 20
23
+ * Urine Analysis: Protein 30, Glucose negative, Ketone negative, Nitrite negative, Bacteria positive
24
+ * Blood Cultures: E. coli resistant to zosyn, GNR (Gram-negative rods)
25
+
26
+ **Imaging Results**
27
+
28
+ * Chest X-ray (CXR): Small bilateral pleural effusions, bibasilar atelectasis or consolidation
29
+ * CT Abdomen and Pelvis: Marked sigmoid distention up to 10 cm, likely secondary to fecal impaction; Hepaticojejunostomy changes; Pancreatic cystic lesion most likely representing IPMN
30
+ * Head CT: No acute intracranial abnormality
31
+ * Echocardiogram (ECHO): Left atrium elongated, right atrium moderately dilated, left ventricular wall thickness normal, left ventricular cavity size normal, left ventricular systolic function hyperdynamic (EF>75%)
32
+
33
+ **Diagnoses**
34
+
35
+ * ICD-9: 3897 (Central venous catheter placement with guidance)
36
+ * ICD-9: 0389 (Unspecified septicemia)
37
+ * ICD-9: 78552 (Septic shock)
38
+ * ICD-9: 5990 (Urinary tract infection, site not specified)
39
+ * ICD-9: 5849 (Acute kidney failure, unspecified)
40
+ * ICD-9: 2762 (Acidosis)
41
+ * ICD-9: 5180 (Pulmonary collapse)
42
+ * ICD-9: 49121 (Obstructive chronic bronchitis with acute exacerbation)
43
+ * ICD-9: 99592 (Severe sepsis)
44
+ * ICD-9: 0414 (Escherichia coli [E. coli] infection in conditions classified elsewhere and of unspecified site)
45
+ * ICD-9: 42731 (Atrial fibrillation)
46
+ * ICD-9: 27652 (Hypovolemia)
47
+ * ICD-9: 28529 (Anemia of other chronic disease)
48
+ * ICD-9: 2948 (Other persistent mental disorders due to conditions classified elsewhere)
49
+ * ICD-9: 4019 (Unspecified essential hypertension)
50
+ * ICD-9: 2724 (Other and unspecified hyperlipidemia)
51
+ * ICD-9: 56032 (Fecal impaction)
52
+
53
+ **Medications**
54
+
55
+ * Aspirin
summaries/subject_16299682_hadm_27576967_input.txt ADDED
@@ -0,0 +1,242 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ PRE-OPERATIVE SUMMARY INPUT (SINGLE ADMISSION):
2
+
3
+ PATIENT:
4
+ - Age: 82
5
+ - Gender: F
6
+
7
+ ADMISSION:
8
+ - Admission ID: 27576967
9
+ - Admission Type: EU OBSERVATION
10
+ - Admission Location: EMERGENCY ROOM
11
+ - Discharge Location: nan
12
+ - Insurance: Medicare
13
+ - Race: WHITE
14
+ - Marital Status: WIDOWED
15
+ - Language: ENGLISH
16
+
17
+ PROCEDURES (0 total):
18
+ - None
19
+
20
+ DIAGNOSES (13 total):
21
+ - 80507 (ICD-9)
22
+ - 87341 (ICD-9)
23
+ - 9160 (ICD-9)
24
+ - E8859 (ICD-9)
25
+ - E8490 (ICD-9)
26
+ - 7812 (ICD-9)
27
+ - V452 (ICD-9)
28
+ - 3315 (ICD-9)
29
+ - 2724 (ICD-9)
30
+ - 311 (ICD-9)
31
+ - 4556 (ICD-9)
32
+ - 73300 (ICD-9)
33
+ - 5990 (ICD-9)
34
+
35
+ LABORATORY RESULTS:
36
+ - None
37
+
38
+ CLINICAL NOTES:
39
+ [RADIOLOGY NOTE]
40
+ EXAMINATION:
41
+ CT HEAD W/O CONTRAST
42
+
43
+ INDICATION: Status post fall. Has a known VP shunt. Evaluate for shunt
44
+ continuity.
45
+
46
+ TECHNIQUE: Contiguous axial images of the brain were obtained without the
47
+ administration of IV contrast. Coronal and sagittal as well as thin
48
+ bone-algorithm reconstructed images were obtained.
49
+
50
+ DOSE: DLP: 891.93 mGy-cm;
51
+ CTDIvol: 52.71 mGy.
52
+
53
+ COMPARISON: None.
54
+
55
+ FINDINGS:
56
+
57
+ There is no evidence of hemorrhage, edema, mass, mass effect, or large
58
+ vascular territory infarction. The sulci are prominent, likely due to age
59
+ related volume loss. The ventricles are enlarged. A ventriculoperitoneal shunt
60
+ enters via a right frontal burr hole. The tip terminates in the frontal horn
61
+ of the left lateral ventricle. The shunt itself appears contiguous without
62
+ evidence of a fracture in the catheter. The basal cisterns are patent.
63
+ Periventricular confluent white matter hypodensities are noted, and
64
+ nonspecific. They likely represent chronic small vessel ischemic disease.
65
+ Moderate calcifications are noted in the intracranial arteries.
66
+
67
+ No fracture is identified. There is significant opacification of the frontal
68
+ sinuses and left ethmoidal air cells. Air-fluid levels and aerosolized
69
+ secretions are noted in the bilateral maxillary sinuses. Mild mucosal
70
+ thickening is present in the sphenoid sinus. The mastoid air cells and middle
71
+ ear cavities are clear. The soft tissues and orbits are unremarkable.
72
+
73
+ IMPRESSION:
74
+
75
+ 1. No acute intracranial abnormality.
76
+ 2. The ventriculoperitoneal shunt appears intact with the tip in the left
77
+ lateral ventricle. The ventricles are enlarged. Comparison to prior exams
78
+ would be helpful to ensure that the size of the ventricles is stable.
79
+ 3. Sinus disease, with a possible acute component.
80
+
81
+ [RADIOLOGY NOTE]
82
+ EXAMINATION: CT C-SPINE W/O CONTRAST
83
+
84
+ INDICATION: Status post fall with a known VP shunt. Evaluate for VP shunt
85
+ continuity and evidence of injury.
86
+
87
+ TECHNIQUE: Contiguous axial images were obtained. Sagittal and coronal
88
+ reformatted images were generated. No contrast was administered.
89
+
90
+ CTDIvol: 36.6 mGy.
91
+ DLP: 758.96 mGy-cm.
92
+
93
+ COMPARISON: None.
94
+
95
+ FINDINGS:
96
+
97
+ There is no abnormality of the prevertebral soft tissues. There is a
98
+ minimally displaced fracture of the right C7 pedicle extending into the right
99
+ articular pillar and superior articular facet of C7 (2, 44 and 400 B, 46). No
100
+ fracture fragments enter the spinal canal. No other fracture is identified.
101
+ Alignment is normal. There are moderate multilevel degenerative changes, most
102
+ marked at C5-6 and C6-7, where there is disc space narrowing and a posterior
103
+ disc osteophyte complexes which are causing moderate spinal canal narrowing.
104
+ There is no severe spinal canal narrowing. Additionally, there is multilevel
105
+ facet hypertrophy and uncovertebral hypertrophy, causing mild multilevel
106
+ neural foraminal narrowing.
107
+
108
+ The ventriculoperitoneal shunt is intact as it courses through the neck. There
109
+ is no surrounding stranding or evidence of surrounding free fluid. There is
110
+ mucosal thickening in the left maxillary sinus and an air-fluid level in the
111
+ right maxillary sinus. There is no cervical lymphadenopathy. The thyroid gland
112
+ is unremarkable. The apices of the lungs are clear.
113
+
114
+ IMPRESSION:
115
+
116
+ 1. Minimally displaced fracture of the right C7 pedicle extending into the
117
+ right articular pillar and superior articular facet. No acute malalignment.
118
+ 2. Intact ventriculoperitoneal shunt.
119
+
120
+ [RADIOLOGY NOTE]
121
+ EXAMINATION: CT CHEST W/O CONTRAST
122
+
123
+ INDICATION: Status post fall with thoracic spine tenderness and right
124
+ paravertebral tenderness. Evaluate for fracture.
125
+
126
+ TECHNIQUE: Multidetector helical scanning of the chest was performed without
127
+ intravenous contrast agent reconstructed as contiguous 5- and 1.25-mm thick
128
+ axial, 2.5-mm thick coronal and parasagittal, and 8 x 8 mm MIPs axial images.
129
+
130
+ DOSE: DLP: 378.32 mGy-cm.
131
+
132
+ COMPARISON: None.
133
+
134
+ FINDINGS:
135
+
136
+ The imaged portions of the thyroid gland are normal. There is no axillary
137
+ lymphadenopathy. A few scattered subcentimeter mediastinal lymph nodes are
138
+ noted, though none meet criteria for pathologic enlargement. There is no free
139
+ fluid or evidence of a mediastinal hematoma. There is no hilar
140
+ lymphadenopathy.
141
+
142
+ The heart is normal in size. There is no pericardial effusion. Moderate
143
+ atherosclerotic calcifications are noted along the coronary arteries and mild
144
+ calcifications are noted on the aortic valve. The thoracic aorta is normal in
145
+ caliber with moderate calcifications along the arch. The main pulmonary artery
146
+ trunks are normal in diameter.
147
+
148
+ The airways are patent to the subsegmental levels with dependent debris seen
149
+ bilaterally. There is mild diffuse bronchial wall thickening and irregularity,
150
+ consistent with chronic small airways disease. Bronchiectasis is most notable
151
+ the right lower lobe, potentially from a prior infection. There is mild
152
+ atelectasis is the right lower lobe. Diffuse ground-glass opacification in the
153
+ left lower lobe with associated volume loss and multiple foci of mucous
154
+ plugging is also most likely atelectasis. No focal endobronchial lesion is
155
+ identified.
156
+
157
+ There is minimal biapical scarring. No discrete nodule is identified. There is
158
+ no pulmonary edema, pleural effusion, or pneumothorax.
159
+
160
+ There is a small hiatal hernia and diffuse esophageal wall thickening
161
+ throughout the chest. This exam is not tailored to evaluate the
162
+ subdiaphragmatic structures. Within the limitations, the imaged portions of
163
+ the liver, spleen, pancreas, adrenal glands, and kidneys are normal.
164
+
165
+ No fracture is identified. Mild degenerative changes are noted in the
166
+ bilateral shoulders and throughout the thoracic spine. There are no worrisome
167
+ lytic or sclerotic osseous lesions. A hemangioma is noted in T12 (4, 209).
168
+
169
+ The ventriculoperitoneal shunt is intact as it courses through the right chest
170
+ wall. There is no surrounding stranding and or surrounding free fluid. The
171
+ soft tissues are otherwise unremarkable.
172
+
173
+ IMPRESSION:
174
+
175
+ 1. No evidence of a thoracic spine or rib fracture.
176
+ 2. Chronic small airways disease with bronchiectasis in the right lower lobe
177
+ and mucous plugging and significant atelectasis in the left lower lobe.
178
+ 3. Diffuse nonspecific is esophageal wall thickening.
179
+ 4. Intact ventriculoperitoneal shunt.
180
+
181
+ [RADIOLOGY NOTE]
182
+ EXAMINATION: MR CERVICAL SPINE W/O CONTRAST
183
+
184
+ INDICATION: History: ___ with acute C7 pedicle and facet fx // Evidence of
185
+ ligamentous injujry
186
+
187
+ TECHNIQUE: Sagittal imaging was performed with T2, T1, and STIR technique.
188
+ Axial gradient echo and T2 weighted imaging was performed. Sagittal
189
+ diffusion-weighted imaging was also performed.
190
+
191
+ COMPARISON: CT cervical spine ___.
192
+
193
+ FINDINGS:
194
+
195
+ The examination is somewhat limited secondary to artifact from patient motion.
196
+
197
+ The C6-C7 pedicle fracture is better depicted on the prior CT. There is
198
+ increased T2/STIR signal in the location of the fracture.
199
+
200
+ There is increased T2/STIR signal within the prevertebral soft tissues at the
201
+ level of the fracture likely representing edema. There is no evidence of large
202
+ hematoma.
203
+
204
+ The vertebral body heights within the cervical spine are maintained. There is
205
+ minimal spondylolisthesis of C4 on C5, minimal retrolisthesis of C5 on C6, and
206
+ of C6 on C7.
207
+
208
+ The cervical spinal cord is normal in signal and morphology. There is no
209
+ diffusion signal abnormality within the cervical spine. There is no evidence
210
+ of epidural hematoma or cord edema.
211
+
212
+ At the C2-C3 level, the spinal canal and neural foramina appear normal.
213
+
214
+ At the C3-C4 level, the spinal canal appears normal. Uncovertebral and facet
215
+ arthropathy cause mild bilateral neural foraminal narrowing, right greater
216
+ than left.
217
+
218
+ At the C4-C5 level, there is a small posterior disc protrusion which causes
219
+ mild spinal canal narrowing. Uncovertebral and facet arthropathy cause mild
220
+ right neural foraminal narrowing.
221
+
222
+ At the C5-C6 level, there is a posterior disc protrusion which causes mild to
223
+ moderate spinal canal narrowing with contact the ventral surface of the spinal
224
+ cord. Uncovertebral and facet arthropathy cause mild left neural foraminal
225
+ narrowing.
226
+
227
+ At the C6-C7 level, there is a broad-based disc protrusion and intervertebral
228
+ osteophytes which cause minimal spinal canal narrowing. The neural foramina
229
+ appear normal.
230
+
231
+ At the C7-T1 level, the spinal canal and neural foramina appear normal.
232
+
233
+ IMPRESSION:
234
+
235
+
236
+ 1. Right C7 pedicle fracture is better depicted on prior CT. Associated edema
237
+ at the level of the fracture and within the adjacent prevertebral soft
238
+ tissues.
239
+ 2. No clear evidence of ligamentous injury.
240
+ 3. No epidural hematoma, cord compression, cord edema, or cord infarct.
241
+ 4. Multilevel cervical spondylosis, greatest at the C5-C6 and C6-C7 levels, as
242
+ described.