Clinical Data Integration for Drug Safety
End-to-end drug safety review pipeline that integrates FDA label information, FAERS spontaneous reports, disproportionality signal detection, pharmacogenomic biomarkers, clinical trial data, and published literature. Designed for regulatory assessments, pharmacovigilance, and clinical decision support.
Guiding principles:
- Label is ground truth -- FDA-approved labeling is the authoritative starting point for known safety information
- Signals need context -- a FAERS signal without label or literature corroboration is hypothesis-generating, not confirmatory
- Disproportionality is not causation -- PRR/ROR measure reporting patterns, not causal relationships
- Pharmacogenomics narrows risk -- PGx biomarkers can identify which patients face elevated risk
- Progressive reporting -- create the report file early; update section by section
- English-first queries -- use English drug names in all tool calls; respond in the user's language
Clinical data integration starts with data harmonization. Different hospitals code the same diagnosis differently (ICD-10 vs SNOMED). Before merging datasets, verify the coding system. Missing data is informative — a missing lab value may mean the test wasn't ordered (patient was stable) not that the result was normal.
LOOK UP, DON'T GUESS
When uncertain about any scientific fact, SEARCH databases first rather than reasoning from memory. A database-verified answer is always more reliable than a guess.
Differentiation: This skill emphasizes regulatory-grade data integration across the full drug lifecycle. For focused FAERS signal detection with quantitative scoring, see tooluniverse-adverse-event-detection. For general pharmacovigilance workflows, see tooluniverse-pharmacovigilance.
COMPUTE, DON'T DESCRIBE
When analysis requires computation (statistics, data processing, scoring, enrichment), write and run Python code via Bash. Don't describe what you would do — execute it and report actual results. Use ToolUniverse tools to retrieve data, then Python (pandas, scipy, statsmodels, matplotlib) to analyze it.
When to Use
Typical triggers:
- "Give me a full safety review for [drug]"
- "What does the FDA label say about [drug] and [event]?"
- "Are there FAERS signals for [drug]?"
- "What pharmacogenomic biomarkers exist for [drug]?"
- "Find clinical trials studying [drug] safety"
- "Post-market surveillance summary for [drug]"
- "Compare safety profiles of [drug A] and [drug B]"
Core Data Sources
| Source |
Type |
Best For |
| FDA Labels (DailyMed) |
Regulatory |
Approved safety information, boxed warnings, drug interactions |
| FAERS |
Spontaneous reports |
Post-market adverse event signals, demographic patterns |
| CPIC |
Guidelines |
Pharmacogenomic dosing recommendations |
| FDA PGx Biomarkers |
Regulatory |
Approved pharmacogenomic labeling |
| ClinicalTrials.gov |
Trial registry |
Ongoing/completed safety trials |
| PubMed |
Literature |
Published safety studies, case reports |
Workflow Overview
Phase 0: Drug Identity & Context
Resolve drug name, get class, mechanism, indications
|
Phase 1: FDA Label Extraction
Boxed warnings, contraindications, adverse reactions, interactions
|
Phase 2: FAERS Signal Detection
Top adverse events, disproportionality (PRR/ROR), demographics
|
Phase 3: Pharmacogenomics
CPIC guidelines, FDA PGx biomarkers, genotype-specific risks
|
Phase 4: Clinical Trials
Safety-focused trials, risk evaluation programs
|
Phase 5: Literature Evidence
PubMed safety studies, case reports, meta-analyses
|
Phase 6: Integrated Safety Report
Synthesize all sources into a cohesive safety profile
Phase Details
Phase 0: Drug Identity & Context
Objective: Unambiguously identify the drug and establish baseline context.
Tools:
DailyMed_search_spls -- search Structured Product Labels
- Input:
query (drug name)
- Output: SPL list with set IDs, titles, labeler names
OpenFDA_get_approval_history -- get approval dates and supplements
- Input:
drug_name (generic or brand name)
- Output: approval dates, application numbers, supplement history
Workflow:
- Search DailyMed to confirm the drug name and identify the correct SPL
- Get approval history to establish how long the drug has been marketed
- Note the therapeutic class, mechanism of action, and approved indications
- Record brand names vs generic name for consistent FAERS queries
Tip: FAERS uses medicinalproduct which can be brand or generic. Try both forms in Phase 2.
Phase 1: FDA Label Extraction
Objective: Extract all safety-relevant sections from the FDA-approved label.
Tools:
FDA_get_boxed_warning_info_by_drug_name -- boxed (black box) warnings
- Input:
drug_name
- Output: warning text, or
{error: {code: "NOT_FOUND"}} if none exists (normal)
FDA_get_warnings_and_cautions_by_drug_name -- warnings and precautions section
- Input:
drug_name
- Output: full warnings text
DailyMed_parse_adverse_reactions -- adverse reactions from label
- Input:
setid (NOT set_id; from Phase 0 DailyMed search)
- Output: parsed adverse reaction tables and text
DailyMed_parse_drug_interactions -- drug interaction section
- Input:
setid (NOT set_id)
- Output: parsed interaction data
Workflow:
- Check for boxed warnings first -- these represent the most serious safety concerns
- Extract warnings and precautions
- Parse adverse reactions (both clinical trial rates and post-marketing reports)
- Extract drug interactions
- A
NOT_FOUND response for boxed warnings is normal and means no boxed warning exists
Label section priority: Boxed Warning > Contraindications > Warnings/Precautions > Adverse Reactions > Drug Interactions
Phase 2: FAERS Signal Detection
Objective: Identify post-market safety signals from spontaneous reports.
Tools:
FAERS_count_reactions_by_drug_event -- top adverse events by frequency
- Input:
medicinalproduct (drug name, NOT drug_name)
- Output:
[{term, count}]
FAERS_calculate_disproportionality -- PRR, ROR, IC for drug-event pair
- Input:
drug_name, adverse_event
- Output:
{metrics: {PRR: {value, ci_95_lower, ci_95_upper}, ROR: {...}, IC: {...}}, signal_detection: {signal_detected, signal_strength}}
FAERS_filter_serious_events -- filter by seriousness type
- Input:
drug_name, seriousness_type (all/death/hospitalization/disability/life_threatening)
- Output: serious event breakdown
FAERS_stratify_by_demographics -- age/sex/country stratification
- Input:
drug_name, adverse_event (optional), stratify_by (sex/age/country)
- Output: demographic breakdown (sex codes: 0=Unknown, 1=Male, 2=Female)
Workflow:
- Get top 20 adverse events by report count
- For the top 10-15, calculate disproportionality (PRR, ROR, IC with 95% CI)
- Signal criteria: PRR >= 2.0, lower CI > 1.0, N >= 3 reports
- For detected signals, filter by seriousness (deaths, hospitalizations)
- Stratify strong signals by demographics to identify at-risk populations
Important notes:
FAERS_count_reactions_by_drug_event uses medicinalproduct param, not drug_name
FAERS_calculate_disproportionality uses drug_name param
- MedDRA term levels differ between count and disproportionality tools; case counts may not match exactly
FAERS signal interpretation — what the numbers mean:
| Metric |
Value |
Interpretation |
| PRR (Proportional Reporting Ratio) |
< 1.0 |
Event reported LESS than expected (possible protective effect or underreporting) |
|
1.0-2.0 |
No signal or weak signal |
|
2.0-5.0 |
Moderate signal — warrants investigation |
|
> 5.0 |
Strong signal — likely real association (but still not proof of causation) |
| ROR (Reporting Odds Ratio) |
Similar to PRR but accounts for all other drugs |
Same thresholds as PRR; slightly more robust |
| IC (Information Component) |
< 0 |
No signal |
|
0-2 |
Weak signal |
|
> 2 |
Strong signal |
Signal ≠ Causation: A strong FAERS signal means the drug-event pair is reported more often than expected. This could be due to:
- True causal relationship (most important)
- Channeling bias (sicker patients get the drug)
- Notoriety bias (media attention increases reporting)
- Protopathic bias (drug prescribed for early symptoms of the event)
How to assess signal credibility:
- Is the event in the FDA label? (Label confirmation = strongest evidence)
- Is there a plausible mechanism? (Drug's pharmacology explains the event)
- Is there a dose-response? (Higher doses → more events)
- Is there temporal consistency? (Event occurs after drug start, resolves after stop)
- Is there epidemiological confirmation? (Published case-control or cohort study)
Phase 3: Pharmacogenomics
Objective: Identify genetic factors that modify drug safety.
Tools:
CPIC_list_guidelines -- get CPIC pharmacogenomic guidelines
- Input: optional
gene, drug filters
- Output: guidelines with gene-drug pairs, dosing recommendations
fda_pharmacogenomic_biomarkers -- FDA-approved PGx biomarkers
- Input: optional
drug_name, biomarker, limit (default 10; use limit=1000 for comprehensive results)
- Output:
{count, shown, results} with biomarker, drug, therapeutic area
Workflow:
- Search CPIC for guidelines involving this drug
- Query FDA PGx biomarkers with the drug name
- For each PGx finding, note: the gene, the actionable alleles, and the clinical recommendation
- Classify as: required testing (boxed warning), recommended testing, or informational
Tip: Use limit=1000 with fda_pharmacogenomic_biomarkers to avoid missing entries (default limit is only 10).
Phase 4: Clinical Trials
Objective: Find ongoing or completed trials studying drug safety.
Tools:
search_clinical_trials -- search ClinicalTrials.gov
- Input:
query_term (required), optional condition, intervention, pageSize
- Output:
{studies, nextPageToken, total_count} or string if no results
Workflow:
- Search for safety-focused trials: "[drug] safety" or "[drug] adverse events"
- Search for Risk Evaluation and Mitigation Strategies (REMS) trials
- Look for post-marketing requirement (PMR) studies
- Note trial status (recruiting, completed, terminated) and primary endpoints
Query tip: Simple queries work best. Complex multi-word queries often return no results. Search "[drug name]" first, then filter by safety-related keywords in the results.
Phase 5: Literature Evidence
Objective: Find published safety studies, case reports, and meta-analyses.
Tools:
PubMed_search_articles -- search biomedical literature
- Input:
query (search term), optional limit
- Output: list of articles (plain list of dicts, NOT
{articles: [...]})
Workflow:
- Search: "[drug] adverse events" or "[drug] safety"
- Search: "[drug] [specific adverse event]" for signals found in Phase 2
- Look for systematic reviews and meta-analyses
- Prioritize: meta-analyses > RCTs > cohort studies > case reports
Phase 6: Integrated Safety Report
Synthesize all phases into a cohesive report:
- Drug Overview -- identity, class, mechanism, approval date, indications
- Labeled Safety Information -- boxed warnings, key contraindications, known adverse reactions
- Post-Market Signals -- FAERS signals with disproportionality metrics, compared to label
- Distinguish: known and labeled vs known but under-labeled vs potential new signal
- Pharmacogenomic Considerations -- PGx biomarkers, testing recommendations
- Clinical Trial Safety Data -- ongoing monitoring studies, REMS programs
- Literature Summary -- key publications supporting or refining safety profile
- Integrated Assessment -- overall risk characterization, populations at elevated risk, data gaps
Evidence grading:
- T1: FDA label / regulatory action (boxed warning, REMS)
- T2: Strong FAERS signal (PRR >= 5, multiple data sources agree)
- T3: Moderate signal or single-source evidence
- T4: Literature mention or computational prediction only
Common Analysis Patterns
| Pattern |
Description |
Key Phases |
| Full Safety Review |
Comprehensive regulatory-style review |
All (0-6) |
| Label vs Real-World |
Compare FDA label to FAERS signals |
0, 1, 2, 6 |
| PGx Safety Assessment |
Focus on pharmacogenomic risk factors |
0, 1, 3, 5 |
| Signal Investigation |
Deep-dive into a specific adverse event |
0, 1, 2, 5, 6 |
| Drug Comparison |
Head-to-head safety comparison of two drugs |
Run phases 0-2 for each, compare in Phase 6 |
Edge Cases & Fallbacks
- New drug with little FAERS data: Rely on FDA label, clinical trials, and mechanism-based prediction
- OTC drugs: May have limited FAERS data; DailyMed still has OTC labels
- Combination products: Search FAERS for each active ingredient separately, then the combination
- Brand vs generic discrepancies: FAERS reports may use either; search both forms
- No CPIC guideline: Normal for most drugs; only ~30 gene-drug pairs have CPIC guidelines
Limitations
- FAERS reporting bias: Spontaneous reports are voluntary; under-reporting is the norm
- No denominator in FAERS: Cannot calculate incidence rates, only disproportionality
- Label lag: FDA labels may not reflect the latest evidence; always supplement with FAERS and literature
- PGx coverage: CPIC and FDA PGx biomarkers cover a fraction of all drugs
- ClinicalTrials.gov completeness: Not all trials report results; some safety data is only in publications
1---2name: tooluniverse-clinical-data-integration3description: End-to-end drug safety review integrating FDA labels, FAERS adverse event reports, PRR/ROR disproportionality, pharmacogenomic biomarkers, clinical trial data, and published literature. Use for regulatory drug safety reviews, comprehensive pharmacovigilance reports, label-vs-real-world AE comparison, and clinical decision support for drug safety.4---5
6# Clinical Data Integration for Drug Safety
7
8End-to-end drug safety review pipeline that integrates FDA label information, FAERS spontaneous reports, disproportionality signal detection, pharmacogenomic biomarkers, clinical trial data, and published literature. Designed for regulatory assessments, pharmacovigilance, and clinical decision support.
9
10**Guiding principles**:
111. **Label is ground truth** -- FDA-approved labeling is the authoritative starting point for known safety information
122. **Signals need context** -- a FAERS signal without label or literature corroboration is hypothesis-generating, not confirmatory
133. **Disproportionality is not causation** -- PRR/ROR measure reporting patterns, not causal relationships
144. **Pharmacogenomics narrows risk** -- PGx biomarkers can identify which patients face elevated risk
155. **Progressive reporting** -- create the report file early; update section by section
166. **English-first queries** -- use English drug names in all tool calls; respond in the user's language
17
18Clinical data integration starts with data harmonization. Different hospitals code the same diagnosis differently (ICD-10 vs SNOMED). Before merging datasets, verify the coding system. Missing data is informative — a missing lab value may mean the test wasn't ordered (patient was stable) not that the result was normal.
19
20## LOOK UP, DON'T GUESS
21When uncertain about any scientific fact, SEARCH databases first rather than reasoning from memory. A database-verified answer is always more reliable than a guess.
22
23**Differentiation**: This skill emphasizes *regulatory-grade data integration* across the full drug lifecycle. For focused FAERS signal detection with quantitative scoring, see `tooluniverse-adverse-event-detection`. For general pharmacovigilance workflows, see `tooluniverse-pharmacovigilance`.
24
25---
26
27## COMPUTE, DON'T DESCRIBE
28When analysis requires computation (statistics, data processing, scoring, enrichment), write and run Python code via Bash. Don't describe what you would do — execute it and report actual results. Use ToolUniverse tools to retrieve data, then Python (pandas, scipy, statsmodels, matplotlib) to analyze it.
29
30## When to Use
31
32Typical triggers:
33- "Give me a full safety review for [drug]"
34- "What does the FDA label say about [drug] and [event]?"
35- "Are there FAERS signals for [drug]?"
36- "What pharmacogenomic biomarkers exist for [drug]?"
37- "Find clinical trials studying [drug] safety"
38- "Post-market surveillance summary for [drug]"
39- "Compare safety profiles of [drug A] and [drug B]"
40
41---
42
43## Core Data Sources
44
45| Source | Type | Best For |
46|--------|------|----------|
47| **FDA Labels (DailyMed)** | Regulatory | Approved safety information, boxed warnings, drug interactions |
48| **FAERS** | Spontaneous reports | Post-market adverse event signals, demographic patterns |
49| **CPIC** | Guidelines | Pharmacogenomic dosing recommendations |
50| **FDA PGx Biomarkers** | Regulatory | Approved pharmacogenomic labeling |
51| **ClinicalTrials.gov** | Trial registry | Ongoing/completed safety trials |
52| **PubMed** | Literature | Published safety studies, case reports |
53
54---
55
56## Workflow Overview
57
58```
59Phase 0: Drug Identity & Context
60 Resolve drug name, get class, mechanism, indications
61 |
62Phase 1: FDA Label Extraction
63 Boxed warnings, contraindications, adverse reactions, interactions
64 |
65Phase 2: FAERS Signal Detection
66 Top adverse events, disproportionality (PRR/ROR), demographics
67 |
68Phase 3: Pharmacogenomics
69 CPIC guidelines, FDA PGx biomarkers, genotype-specific risks
70 |
71Phase 4: Clinical Trials
72 Safety-focused trials, risk evaluation programs
73 |
74Phase 5: Literature Evidence
75 PubMed safety studies, case reports, meta-analyses
76 |
77Phase 6: Integrated Safety Report
78 Synthesize all sources into a cohesive safety profile
79```
80
81---
82
83## Phase Details
84
85### Phase 0: Drug Identity & Context
86
87**Objective**: Unambiguously identify the drug and establish baseline context.
88
89**Tools**:
90- `DailyMed_search_spls` -- search Structured Product Labels
91 - Input: `query` (drug name)
92 - Output: SPL list with set IDs, titles, labeler names
93- `OpenFDA_get_approval_history` -- get approval dates and supplements
94 - Input: `drug_name` (generic or brand name)
95 - Output: approval dates, application numbers, supplement history
96
97**Workflow**:
981. Search DailyMed to confirm the drug name and identify the correct SPL
992. Get approval history to establish how long the drug has been marketed
1003. Note the therapeutic class, mechanism of action, and approved indications
1014. Record brand names vs generic name for consistent FAERS queries
102
103**Tip**: FAERS uses `medicinalproduct` which can be brand or generic. Try both forms in Phase 2.
104
105### Phase 1: FDA Label Extraction
106
107**Objective**: Extract all safety-relevant sections from the FDA-approved label.
108
109**Tools**:
110- `FDA_get_boxed_warning_info_by_drug_name` -- boxed (black box) warnings
111 - Input: `drug_name`
112 - Output: warning text, or `{error: {code: "NOT_FOUND"}}` if none exists (normal)
113- `FDA_get_warnings_and_cautions_by_drug_name` -- warnings and precautions section
114 - Input: `drug_name`
115 - Output: full warnings text
116- `DailyMed_parse_adverse_reactions` -- adverse reactions from label
117 - Input: `setid` (NOT `set_id`; from Phase 0 DailyMed search)
118 - Output: parsed adverse reaction tables and text
119- `DailyMed_parse_drug_interactions` -- drug interaction section
120 - Input: `setid` (NOT `set_id`)
121 - Output: parsed interaction data
122
123**Workflow**:
1241. Check for boxed warnings first -- these represent the most serious safety concerns
1252. Extract warnings and precautions
1263. Parse adverse reactions (both clinical trial rates and post-marketing reports)
1274. Extract drug interactions
1285. A `NOT_FOUND` response for boxed warnings is normal and means no boxed warning exists
129
130**Label section priority**: Boxed Warning > Contraindications > Warnings/Precautions > Adverse Reactions > Drug Interactions
131
132### Phase 2: FAERS Signal Detection
133
134**Objective**: Identify post-market safety signals from spontaneous reports.
135
136**Tools**:
137- `FAERS_count_reactions_by_drug_event` -- top adverse events by frequency
138 - Input: `medicinalproduct` (drug name, NOT `drug_name`)
139 - Output: `[{term, count}]`
140- `FAERS_calculate_disproportionality` -- PRR, ROR, IC for drug-event pair
141 - Input: `drug_name`, `adverse_event`
142 - Output: `{metrics: {PRR: {value, ci_95_lower, ci_95_upper}, ROR: {...}, IC: {...}}, signal_detection: {signal_detected, signal_strength}}`
143- `FAERS_filter_serious_events` -- filter by seriousness type
144 - Input: `drug_name`, `seriousness_type` (all/death/hospitalization/disability/life_threatening)
145 - Output: serious event breakdown
146- `FAERS_stratify_by_demographics` -- age/sex/country stratification
147 - Input: `drug_name`, `adverse_event` (optional), `stratify_by` (sex/age/country)
148 - Output: demographic breakdown (sex codes: 0=Unknown, 1=Male, 2=Female)
149
150**Workflow**:
1511. Get top 20 adverse events by report count
1522. For the top 10-15, calculate disproportionality (PRR, ROR, IC with 95% CI)
1533. Signal criteria: PRR >= 2.0, lower CI > 1.0, N >= 3 reports
1544. For detected signals, filter by seriousness (deaths, hospitalizations)
1555. Stratify strong signals by demographics to identify at-risk populations
156
157**Important notes**:
158- `FAERS_count_reactions_by_drug_event` uses `medicinalproduct` param, not `drug_name`
159- `FAERS_calculate_disproportionality` uses `drug_name` param
160- MedDRA term levels differ between count and disproportionality tools; case counts may not match exactly
161
162**FAERS signal interpretation** — what the numbers mean:
163
164| Metric | Value | Interpretation |
165|--------|-------|---------------|
166| **PRR** (Proportional Reporting Ratio) | < 1.0 | Event reported LESS than expected (possible protective effect or underreporting) |
167| | 1.0-2.0 | No signal or weak signal |
168| | 2.0-5.0 | **Moderate signal** — warrants investigation |
169| | > 5.0 | **Strong signal** — likely real association (but still not proof of causation) |
170| **ROR** (Reporting Odds Ratio) | Similar to PRR but accounts for all other drugs | Same thresholds as PRR; slightly more robust |
171| **IC** (Information Component) | < 0 | No signal |
172| | 0-2 | Weak signal |
173| | > 2 | **Strong signal** |
174
175**Signal ≠ Causation**: A strong FAERS signal means the drug-event pair is reported more often than expected. This could be due to:
176- True causal relationship (most important)
177- Channeling bias (sicker patients get the drug)
178- Notoriety bias (media attention increases reporting)
179- Protopathic bias (drug prescribed for early symptoms of the event)
180
181**How to assess signal credibility**:
1821. Is the event in the FDA label? (Label confirmation = strongest evidence)
1832. Is there a plausible mechanism? (Drug's pharmacology explains the event)
1843. Is there a dose-response? (Higher doses → more events)
1854. Is there temporal consistency? (Event occurs after drug start, resolves after stop)
1865. Is there epidemiological confirmation? (Published case-control or cohort study)
187
188### Phase 3: Pharmacogenomics
189
190**Objective**: Identify genetic factors that modify drug safety.
191
192**Tools**:
193- `CPIC_list_guidelines` -- get CPIC pharmacogenomic guidelines
194 - Input: optional `gene`, `drug` filters
195 - Output: guidelines with gene-drug pairs, dosing recommendations
196- `fda_pharmacogenomic_biomarkers` -- FDA-approved PGx biomarkers
197 - Input: optional `drug_name`, `biomarker`, `limit` (default 10; use `limit=1000` for comprehensive results)
198 - Output: `{count, shown, results}` with biomarker, drug, therapeutic area
199
200**Workflow**:
2011. Search CPIC for guidelines involving this drug
2022. Query FDA PGx biomarkers with the drug name
2033. For each PGx finding, note: the gene, the actionable alleles, and the clinical recommendation
2044. Classify as: required testing (boxed warning), recommended testing, or informational
205
206**Tip**: Use `limit=1000` with `fda_pharmacogenomic_biomarkers` to avoid missing entries (default limit is only 10).
207
208### Phase 4: Clinical Trials
209
210**Objective**: Find ongoing or completed trials studying drug safety.
211
212**Tools**:
213- `search_clinical_trials` -- search ClinicalTrials.gov
214 - Input: `query_term` (required), optional `condition`, `intervention`, `pageSize`
215 - Output: `{studies, nextPageToken, total_count}` or string if no results
216
217**Workflow**:
2181. Search for safety-focused trials: "[drug] safety" or "[drug] adverse events"
2192. Search for Risk Evaluation and Mitigation Strategies (REMS) trials
2203. Look for post-marketing requirement (PMR) studies
2214. Note trial status (recruiting, completed, terminated) and primary endpoints
222
223**Query tip**: Simple queries work best. Complex multi-word queries often return no results. Search "[drug name]" first, then filter by safety-related keywords in the results.
224
225### Phase 5: Literature Evidence
226
227**Objective**: Find published safety studies, case reports, and meta-analyses.
228
229**Tools**:
230- `PubMed_search_articles` -- search biomedical literature
231 - Input: `query` (search term), optional `limit`
232 - Output: list of articles (plain list of dicts, NOT `{articles: [...]}`)
233
234**Workflow**:
2351. Search: "[drug] adverse events" or "[drug] safety"
2362. Search: "[drug] [specific adverse event]" for signals found in Phase 2
2373. Look for systematic reviews and meta-analyses
2384. Prioritize: meta-analyses > RCTs > cohort studies > case reports
239
240### Phase 6: Integrated Safety Report
241
242Synthesize all phases into a cohesive report:
243
2441. **Drug Overview** -- identity, class, mechanism, approval date, indications
2452. **Labeled Safety Information** -- boxed warnings, key contraindications, known adverse reactions
2463. **Post-Market Signals** -- FAERS signals with disproportionality metrics, compared to label
247 - Distinguish: *known and labeled* vs *known but under-labeled* vs *potential new signal*
2484. **Pharmacogenomic Considerations** -- PGx biomarkers, testing recommendations
2495. **Clinical Trial Safety Data** -- ongoing monitoring studies, REMS programs
2506. **Literature Summary** -- key publications supporting or refining safety profile
2517. **Integrated Assessment** -- overall risk characterization, populations at elevated risk, data gaps
252
253**Evidence grading**:
254- T1: FDA label / regulatory action (boxed warning, REMS)
255- T2: Strong FAERS signal (PRR >= 5, multiple data sources agree)
256- T3: Moderate signal or single-source evidence
257- T4: Literature mention or computational prediction only
258
259---
260
261## Common Analysis Patterns
262
263| Pattern | Description | Key Phases |
264|---------|-------------|------------|
265| **Full Safety Review** | Comprehensive regulatory-style review | All (0-6) |
266| **Label vs Real-World** | Compare FDA label to FAERS signals | 0, 1, 2, 6 |
267| **PGx Safety Assessment** | Focus on pharmacogenomic risk factors | 0, 1, 3, 5 |
268| **Signal Investigation** | Deep-dive into a specific adverse event | 0, 1, 2, 5, 6 |
269| **Drug Comparison** | Head-to-head safety comparison of two drugs | Run phases 0-2 for each, compare in Phase 6 |
270
271---
272
273## Edge Cases & Fallbacks
274
275- **New drug with little FAERS data**: Rely on FDA label, clinical trials, and mechanism-based prediction
276- **OTC drugs**: May have limited FAERS data; DailyMed still has OTC labels
277- **Combination products**: Search FAERS for each active ingredient separately, then the combination
278- **Brand vs generic discrepancies**: FAERS reports may use either; search both forms
279- **No CPIC guideline**: Normal for most drugs; only ~30 gene-drug pairs have CPIC guidelines
280
281---
282
283## Limitations
284
285- **FAERS reporting bias**: Spontaneous reports are voluntary; under-reporting is the norm
286- **No denominator in FAERS**: Cannot calculate incidence rates, only disproportionality
287- **Label lag**: FDA labels may not reflect the latest evidence; always supplement with FAERS and literature
288- **PGx coverage**: CPIC and FDA PGx biomarkers cover a fraction of all drugs
289- **ClinicalTrials.gov completeness**: Not all trials report results; some safety data is only in publications