Oncology template
Clinical trial matching
Two pre-visit files per patient — demographics with diagnosis history, plus the latest biomarker and lab results — and a one-click workflow that scores every patient against currently-recruiting Phase 2 and Phase 3 trials on ClinicalTrials.gov.
Patient inputs · pre-visit
CSV today · parsed-PDF EHR on roadmappatient-profile.csv
8 patients · diagnosis + history
| id | age/sex | diagnosis | last regimen |
|---|---|---|---|
| P001 | 62F | NSCLC IV | 2L Osimertinib |
| P002 | 58F | Breast HER2+ IIIA | 1L AC-T + Trastuzumab |
| P003 | 71M | Colorectal MSS IV | 2L FOLFIRI + Cetuximab |
| P004 | 49F | TNBC II | 1L AC-T |
| P005 | 67M | NSCLC IIIB | 1L Carbo + Pem + Pembro |
| P006 | 55F | Ovarian HGS IIIC | 2L Olaparib maintenance |
| P007 | 73M | mCRPC IV | 3L Cabazitaxel |
| P008 | 44F | Melanoma BRAF+ IV | Treatment-naive |
test-results.csv
20 results · genomic + IHC + liquid Bx
| id | test | marker | result |
|---|---|---|---|
| P001 | Genomic | EGFR | L858R Positive |
| P001 | IHC | PD-L1 TPS | 5% (Negative) |
| P002 | IHC | HER2 | 3+ Positive |
| P003 | Genomic | KRAS | G12C Positive |
| P003 | Genomic | MSI | MSS |
| P004 | Genomic | BRCA1 | Pathogenic |
| P005 | IHC | PD-L1 TPS | 75% (High) |
| P005 | Genomic | KRAS | G12C Positive |
| P006 | Genomic | BRCA2 | Pathogenic |
| P007 | Liquid Bx | AR-V7 | Positive |
| P008 | Genomic | BRAF | V600E Positive |
Recipe · multi-node workflow
Clinical Trial Match — Oncology
Match patients to recruiting trials by biomarker, stage, and prior therapy.
ClinicalTrials.gov~90s
What the workflow builds
- 1load_patient_profileRead patient-profile.csv
- 2load_test_resultsRead test-results.csv
- 3patient_featuresPivot biomarkers + join history
- 4fetch_trialsPull recruiting Ph2/3 trials per cancer type
- 5trial_universeUnion all fetched trials
- 6patient_trial_pairsMatch patients to trial conditions
- 7trial_match_scoringScore by biomarker + stage + status
- 8ranked_matchesTop 5 trials per patient with reason-why
Output: ranked table of top 5 trials per patient with NCT ID, sponsor, phase, status, match score, and one-line reasoning. Defaults to the data view, not a chart.
← Back to main
recipe:
clinical-trial-match · source: ClinicalTrials.gov v2