diff --git a/src/main/kotlin/dev/dnpm/etl/processor/pseudonym/extensions.kt b/src/main/kotlin/dev/dnpm/etl/processor/pseudonym/extensions.kt index 7ce1e0c..8d5a2cc 100644 --- a/src/main/kotlin/dev/dnpm/etl/processor/pseudonym/extensions.kt +++ b/src/main/kotlin/dev/dnpm/etl/processor/pseudonym/extensions.kt @@ -255,6 +255,7 @@ infix fun Mtb.pseudonymizeWith(pseudonymizeService: PseudonymizeService) { this.claims?.forEach { it.patient.id = patientPseudonym } this.claimResponses?.forEach { it.patient.id = patientPseudonym } this.diagnoses?.forEach { it.patient.id = patientPseudonym } + this.familyMemberHistories?.forEach { it.patient.id = patientPseudonym } this.histologyReports?.forEach { it.patient.id = patientPseudonym it.results.tumorMorphology?.patient?.id = patientPseudonym diff --git a/src/test/kotlin/dev/dnpm/etl/processor/pseudonym/ExtensionsTest.kt b/src/test/kotlin/dev/dnpm/etl/processor/pseudonym/ExtensionsTest.kt index e30ee73..65986f1 100644 --- a/src/test/kotlin/dev/dnpm/etl/processor/pseudonym/ExtensionsTest.kt +++ b/src/test/kotlin/dev/dnpm/etl/processor/pseudonym/ExtensionsTest.kt @@ -207,7 +207,7 @@ class ExtensionsTest { inner class UsingDnpmV2Datamodel { val FAKE_MTB_FILE_PATH = "mv64e-mtb-fake-patient.json" - val CLEAN_PATIENT_ID = "e14bf9b6-7982-4933-a648-cfdea6484f1c" + val CLEAN_PATIENT_ID = "aca5a971-28be-4089-8128-0036a4fe6f1a" private fun fakeMtbFile(): Mtb { val mtbFile = ClassPathResource(FAKE_MTB_FILE_PATH).inputStream diff --git a/src/test/resources/mv64e-mtb-fake-patient.json b/src/test/resources/mv64e-mtb-fake-patient.json index 5895be5..291f22d 100644 --- a/src/test/resources/mv64e-mtb-fake-patient.json +++ b/src/test/resources/mv64e-mtb-fake-patient.json @@ -1,12 +1,12 @@ { "patient": { - "id": "e14bf9b6-7982-4933-a648-cfdea6484f1c", + "id": "aca5a971-28be-4089-8128-0036a4fe6f1a", "gender": { "code": "male", "display": "Männlich", "system": "Gender" }, - "birthDate": "1993-08-01", + "birthDate": "1961-09-01", "healthInsurance": { "type": { "code": "GKV", @@ -24,7 +24,7 @@ "municipalityCode": "12345" }, "age": { - "value": 31, + "value": 63, "unit": "Years" }, "vitalStatus": { @@ -35,17 +35,17 @@ }, "episodesOfCare": [ { - "id": "dc4d1b2c-7468-4a4a-8fbd-1b0bb645c082", + "id": "5481850f-f266-4d2f-8fbc-6bb790680d8f", "patient": { - "id": "e14bf9b6-7982-4933-a648-cfdea6484f1c", + "id": "aca5a971-28be-4089-8128-0036a4fe6f1a", "type": "Patient" }, "period": { - "start": "2024-11-30" + "start": "2024-12-24" }, "diagnoses": [ { - "id": "53155bb3-39f8-4cd9-aa9b-1675165bfdb8", + "id": "c1731d5e-6cca-4f8e-bca6-de233926106e", "type": "MTBDiagnosis" } ] @@ -53,12 +53,12 @@ ], "diagnoses": [ { - "id": "53155bb3-39f8-4cd9-aa9b-1675165bfdb8", + "id": "c1731d5e-6cca-4f8e-bca6-de233926106e", "patient": { - "id": "e14bf9b6-7982-4933-a648-cfdea6484f1c", + "id": "aca5a971-28be-4089-8128-0036a4fe6f1a", "type": "Patient" }, - "recordedOn": "2022-09-01", + "recordedOn": "2023-03-01", "type": { "history": [ { @@ -67,35 +67,35 @@ "display": "Hauptdiagnose", "system": "dnpm-dip/mtb/diagnosis/type" }, - "date": "2022-09-01" + "date": "2023-03-01" } ] }, "code": { - "code": "C57.0", - "display": "Bösartige Neubildung: Tuba uterina [Falloppio]", + "code": "C50.1", + "display": "Bösartige Neubildung: Zentraler Drüsenkörper der Brustdrüse", "system": "http://fhir.de/CodeSystem/bfarm/icd-10-gm", "version": "2025" }, "topography": { - "code": "C57.0", - "display": "Eileiter", + "code": "C50.1", + "display": "Zentraler Drüsenkörper der Brust", "system": "urn:oid:2.16.840.1.113883.6.43.1", "version": "Zweite Revision" }, "grading": { "history": [ { - "date": "2022-09-01", + "date": "2023-03-01", "codes": [ { - "code": "4", - "display": "4 = undifferenziert", + "code": "U", + "display": "U = unbekannt", "system": "https://www.basisdatensatz.de/feld/161/grading" }, { - "code": "1", - "display": "Pilocytic astrocytoma", + "code": "2", + "display": "Diffuse astrocytoma", "system": "dnpm-dip/mtb/who-grading-cns-tumors", "version": "2021" } @@ -106,7 +106,7 @@ "staging": { "history": [ { - "date": "2022-09-01", + "date": "2023-03-01", "method": { "code": "clinical", "display": "Klinisch", @@ -118,18 +118,18 @@ "system": "UICC" }, "nodes": { - "code": "N3", + "code": "N2", "system": "UICC" }, "metastasis": { - "code": "M0", + "code": "Mx", "system": "UICC" } }, "otherClassifications": [ { - "code": "local", - "display": "Lokal", + "code": "unknown", + "display": "Unbekannt", "system": "dnpm-dip/mtb/diagnosis/kds-tumor-spread" } ] @@ -137,8 +137,8 @@ ] }, "guidelineTreatmentStatus": { - "code": "no-guidelines-available", - "display": "Keine Leitlinien vorhanden", + "code": "unknown", + "display": "Unbekannt", "system": "dnpm-dip/mtb/diagnosis/guideline-treatment-status" }, "notes": [ @@ -146,30 +146,44 @@ ] } ], + "familyMemberHistories": [ + { + "id": "f982b161-f8a3-4b5b-a390-1ef0d84efc1b", + "patient": { + "id": "aca5a971-28be-4089-8128-0036a4fe6f1a", + "type": "Patient" + }, + "relationship": { + "code": "EXT", + "display": "Verwandter weiteren Grades", + "system": "dnpm-dip/mtb/family-meber-history/relationship-type" + } + } + ], "guidelineTherapies": [ { - "id": "b63bcd3e-1bbb-425d-bd4f-03820036e249", + "id": "0c696b1a-d123-419b-9a6f-e79322392f4e", "patient": { - "id": "e14bf9b6-7982-4933-a648-cfdea6484f1c", + "id": "aca5a971-28be-4089-8128-0036a4fe6f1a", "type": "Patient" }, "reason": { - "id": "53155bb3-39f8-4cd9-aa9b-1675165bfdb8", - "display": "Bösartige Neubildung: Tuba uterina [Falloppio]", + "id": "c1731d5e-6cca-4f8e-bca6-de233926106e", + "display": "Bösartige Neubildung: Zentraler Drüsenkörper der Brustdrüse", "type": "MTBDiagnosis" }, - "therapyLine": 8, + "therapyLine": 3, "intent": { "code": "X", "display": "Keine Angabe", "system": "dnpm-dip/therapy/intent" }, "category": { - "code": "S", - "display": "Sonstiges", + "code": "I", + "display": "Intraopterativ", "system": "dnpm-dip/therapy/category" }, - "recordedOn": "2025-05-30", + "recordedOn": "2025-06-24", "status": { "code": "stopped", "display": "Abgebrochen", @@ -181,13 +195,13 @@ "system": "dnpm-dip/therapy/status-reason" }, "period": { - "start": "2024-05-30", - "end": "2024-08-22" + "start": "2024-04-24", + "end": "2024-12-18" }, "medication": [ { - "code": "L01XX57", - "display": "Plitidepsin", + "code": "L01EX02", + "display": "Sorafenib", "system": "http://fhir.de/CodeSystem/bfarm/atc", "version": "2025" } @@ -197,28 +211,28 @@ ] }, { - "id": "d7de61c1-a5cc-429b-9c6f-e47765828f90", + "id": "da26f4c4-834e-4f6a-86eb-4df13c4a442f", "patient": { - "id": "e14bf9b6-7982-4933-a648-cfdea6484f1c", + "id": "aca5a971-28be-4089-8128-0036a4fe6f1a", "type": "Patient" }, "reason": { - "id": "53155bb3-39f8-4cd9-aa9b-1675165bfdb8", - "display": "Bösartige Neubildung: Tuba uterina [Falloppio]", + "id": "c1731d5e-6cca-4f8e-bca6-de233926106e", + "display": "Bösartige Neubildung: Zentraler Drüsenkörper der Brustdrüse", "type": "MTBDiagnosis" }, - "therapyLine": 5, + "therapyLine": 4, "intent": { - "code": "P", - "display": "Palliativ", + "code": "X", + "display": "Keine Angabe", "system": "dnpm-dip/therapy/intent" }, "category": { - "code": "S", - "display": "Sonstiges", + "code": "A", + "display": "Adjuvant", "system": "dnpm-dip/therapy/category" }, - "recordedOn": "2025-05-30", + "recordedOn": "2025-06-24", "status": { "code": "stopped", "display": "Abgebrochen", @@ -230,13 +244,13 @@ "system": "dnpm-dip/therapy/status-reason" }, "period": { - "start": "2024-02-29", - "end": "2024-10-03" + "start": "2024-06-24", + "end": "2025-02-24" }, "medication": [ { - "code": "L01XX29", - "display": "Denileukindiftitox", + "code": "L01EX13", + "display": "Gilteritinib", "system": "http://fhir.de/CodeSystem/bfarm/atc", "version": "2025" } @@ -248,14 +262,14 @@ ], "guidelineProcedures": [ { - "id": "960c989f-12f0-4592-96a8-fcb55938cd38", + "id": "09ac6bfb-05bb-4c8f-b65a-dae96407939c", "patient": { - "id": "e14bf9b6-7982-4933-a648-cfdea6484f1c", + "id": "aca5a971-28be-4089-8128-0036a4fe6f1a", "type": "Patient" }, "reason": { - "id": "53155bb3-39f8-4cd9-aa9b-1675165bfdb8", - "display": "Bösartige Neubildung: Tuba uterina [Falloppio]", + "id": "c1731d5e-6cca-4f8e-bca6-de233926106e", + "display": "Bösartige Neubildung: Zentraler Drüsenkörper der Brustdrüse", "type": "MTBDiagnosis" }, "therapyLine": 3, @@ -264,24 +278,64 @@ "display": "Keine Angabe", "system": "dnpm-dip/therapy/intent" }, + "code": { + "code": "nuclear-medicine", + "display": "Nuklearmedizinische Therapie", + "system": "dnpm-dip/mtb/procedure/type" + }, + "status": { + "code": "stopped", + "display": "Abgebrochen", + "system": "dnpm-dip/therapy/status" + }, + "statusReason": { + "code": "patient-death", + "display": "Tod", + "system": "dnpm-dip/therapy/status-reason" + }, + "recordedOn": "2025-06-24", + "period": { + "start": "2024-12-24" + }, + "notes": [ + "Notes on the therapeutic procedure..." + ] + }, + { + "id": "1d12955f-216f-4731-8a37-e2eca4c2a735", + "patient": { + "id": "aca5a971-28be-4089-8128-0036a4fe6f1a", + "type": "Patient" + }, + "reason": { + "id": "c1731d5e-6cca-4f8e-bca6-de233926106e", + "display": "Bösartige Neubildung: Zentraler Drüsenkörper der Brustdrüse", + "type": "MTBDiagnosis" + }, + "therapyLine": 1, + "intent": { + "code": "S", + "display": "Sonstiges", + "system": "dnpm-dip/therapy/intent" + }, "code": { "code": "surgery", "display": "OP", "system": "dnpm-dip/mtb/procedure/type" }, "status": { - "code": "on-going", - "display": "Laufend", + "code": "completed", + "display": "Abgeschlossen", "system": "dnpm-dip/therapy/status" }, "statusReason": { - "code": "payment-pending", - "display": "Kostenübernahme noch ausstehend", + "code": "progression", + "display": "Progression", "system": "dnpm-dip/therapy/status-reason" }, - "recordedOn": "2025-05-30", + "recordedOn": "2025-06-24", "period": { - "start": "2024-11-30" + "start": "2024-12-24" }, "notes": [ "Notes on the therapeutic procedure..." @@ -290,28 +344,28 @@ ], "performanceStatus": [ { - "id": "2d5108a3-600c-4153-8600-0427ad00d8a9", + "id": "7cf3d19b-a537-47e4-b7f0-d324e8b1ad70", "patient": { - "id": "e14bf9b6-7982-4933-a648-cfdea6484f1c", + "id": "aca5a971-28be-4089-8128-0036a4fe6f1a", "type": "Patient" }, - "effectiveDate": "2025-05-30", + "effectiveDate": "2025-06-24", "value": { - "code": "5", - "display": "ECOG 5", + "code": "1", + "display": "ECOG 1", "system": "ECOG-Performance-Status" } } ], "specimens": [ { - "id": "c59253e3-3c11-40bd-bc35-7c089f734862", + "id": "c3f30fe7-d193-4cde-a3c2-ef8f2497df51", "patient": { - "id": "e14bf9b6-7982-4933-a648-cfdea6484f1c", + "id": "aca5a971-28be-4089-8128-0036a4fe6f1a", "type": "Patient" }, "diagnosis": { - "id": "53155bb3-39f8-4cd9-aa9b-1675165bfdb8", + "id": "c1731d5e-6cca-4f8e-bca6-de233926106e", "type": "MTBDiagnosis" }, "type": { @@ -320,15 +374,15 @@ "system": "dnpm-dip/mtb/tumor-specimen/type" }, "collection": { - "date": "2025-05-30", + "date": "2025-06-24", "method": { "code": "unknown", "display": "Unbekannt", "system": "dnpm-dip/mtb/tumor-specimen/collection/method" }, "localization": { - "code": "primary-tumor", - "display": "Primärtumor", + "code": "unknown", + "display": "Unbekannt", "system": "dnpm-dip/mtb/tumor-specimen/collection/localization" } } @@ -336,9 +390,9 @@ ], "priorDiagnosticReports": [ { - "id": "c02f0997-c43f-4da0-819e-d7ae7370d78d", + "id": "0209a1fa-3948-4bc5-a2f5-988818057544", "patient": { - "id": "e14bf9b6-7982-4933-a648-cfdea6484f1c", + "id": "aca5a971-28be-4089-8128-0036a4fe6f1a", "type": "Patient" }, "performer": { @@ -346,14 +400,14 @@ "display": "Molekular-Pathologie UKx", "type": "Institute" }, - "issuedOn": "2025-05-30", + "issuedOn": "2025-06-24", "specimen": { - "id": "c59253e3-3c11-40bd-bc35-7c089f734862", + "id": "c3f30fe7-d193-4cde-a3c2-ef8f2497df51", "type": "TumorSpecimen" }, "type": { - "code": "karyotyping", - "display": "Karyotyping", + "code": "fusion-panel", + "display": "Fusionspanel", "system": "dnpm-dip/mtb/molecular-diagnostics/type" }, "results": [ @@ -363,43 +417,43 @@ ], "histologyReports": [ { - "id": "791de8a5-b766-42d5-9454-12fbfe25ad92", + "id": "1c51bb6f-b551-43a4-9923-6db7fe36440c", "patient": { - "id": "e14bf9b6-7982-4933-a648-cfdea6484f1c", + "id": "aca5a971-28be-4089-8128-0036a4fe6f1a", "type": "Patient" }, "specimen": { - "id": "c59253e3-3c11-40bd-bc35-7c089f734862", + "id": "c3f30fe7-d193-4cde-a3c2-ef8f2497df51", "type": "TumorSpecimen" }, - "issuedOn": "2025-05-30", + "issuedOn": "2025-06-24", "results": { "tumorMorphology": { - "id": "699db4c1-74a1-4c0f-bc20-275f85abfd20", + "id": "a177e88e-af76-45c8-ba93-e2f2339888a0", "patient": { - "id": "e14bf9b6-7982-4933-a648-cfdea6484f1c", + "id": "aca5a971-28be-4089-8128-0036a4fe6f1a", "type": "Patient" }, "specimen": { - "id": "c59253e3-3c11-40bd-bc35-7c089f734862", + "id": "c3f30fe7-d193-4cde-a3c2-ef8f2497df51", "type": "TumorSpecimen" }, "value": { - "code": "8891/0", - "display": "Epitheloides Leiomyom", + "code": "9719/3", + "display": "Nasales NK/T-Zell-Lymphom", "system": "urn:oid:2.16.840.1.113883.6.43.1", "version": "Zweite Revision" }, "note": "Notes..." }, "tumorCellContent": { - "id": "5c408779-8f1c-4c44-a3f1-0bee32a0b7f1", + "id": "32605a2f-4c5c-4f5a-9909-326955405fe0", "patient": { - "id": "e14bf9b6-7982-4933-a648-cfdea6484f1c", + "id": "aca5a971-28be-4089-8128-0036a4fe6f1a", "type": "Patient" }, "specimen": { - "id": "c59253e3-3c11-40bd-bc35-7c089f734862", + "id": "c3f30fe7-d193-4cde-a3c2-ef8f2497df51", "type": "TumorSpecimen" }, "method": { @@ -407,66 +461,34 @@ "display": "Histologisch", "system": "dnpm-dip/mtb/tumor-cell-content/method" }, - "value": 0.022777185931090127 + "value": 0.40875903241796807 } } } ], "ihcReports": [ { - "id": "d913c59b-7788-4931-a24c-5a71995ee77b", + "id": "ced8a836-262e-4067-b272-94c8f9222446", "patient": { - "id": "e14bf9b6-7982-4933-a648-cfdea6484f1c", + "id": "aca5a971-28be-4089-8128-0036a4fe6f1a", "type": "Patient" }, "specimen": { - "id": "c59253e3-3c11-40bd-bc35-7c089f734862", + "id": "c3f30fe7-d193-4cde-a3c2-ef8f2497df51", "type": "TumorSpecimen" }, - "issuedOn": "2025-05-30", - "journalId": "7f39e2f3-6b0f-486d-b2d2-a1c8c4ec0493", - "blockIds": [ - "a91d53a8-7949-4233-b710-1f1b456ff8c7" - ], + "issuedOn": "2025-06-24", "results": { "proteinExpression": [ { - "id": "60538b11-9da7-4248-a878-00dbfe31cf37", + "id": "07bdd4f4-6df7-4c22-9ef2-2abb86cf4666", "patient": { - "id": "e14bf9b6-7982-4933-a648-cfdea6484f1c", + "id": "aca5a971-28be-4089-8128-0036a4fe6f1a", "type": "Patient" }, "protein": { - "code": "HGNC:34", - "display": "ABCA4", - "system": "https://www.genenames.org/" - }, - "value": { - "code": "2+", - "display": "2+", - "system": "dnpm-dip/mtb/ihc/protein-expression/result" - }, - "tpsScore": 15, - "icScore": { - "code": "3", - "display": ">= 10%", - "system": "dnpm-dip/mtb/ihc/protein-expression/ic-score" - }, - "tcScore": { - "code": "5", - "display": ">= 50%", - "system": "dnpm-dip/mtb/ihc/protein-expression/tc-score" - } - }, - { - "id": "32a8c01c-4bd7-4ae9-8835-6ba747fe1991", - "patient": { - "id": "e14bf9b6-7982-4933-a648-cfdea6484f1c", - "type": "Patient" - }, - "protein": { - "code": "HGNC:886", - "display": "ATRX", + "code": "HGNC:3942", + "display": "MTOR", "system": "https://www.genenames.org/" }, "value": { @@ -474,22 +496,22 @@ "display": "Nicht exprimiert", "system": "dnpm-dip/mtb/ihc/protein-expression/result" }, - "tpsScore": 33, + "tpsScore": 21, "icScore": { - "code": "2", - "display": ">= 5%", + "code": "1", + "display": ">= 1%", "system": "dnpm-dip/mtb/ihc/protein-expression/ic-score" }, "tcScore": { - "code": "5", - "display": ">= 50%", + "code": "6", + "display": ">= 75%", "system": "dnpm-dip/mtb/ihc/protein-expression/tc-score" } }, { - "id": "edd1cb04-8c1a-49f7-bb88-36ee576ade21", + "id": "38ac3c86-7d13-4d5d-a85d-7d79846aa85d", "patient": { - "id": "e14bf9b6-7982-4933-a648-cfdea6484f1c", + "id": "aca5a971-28be-4089-8128-0036a4fe6f1a", "type": "Patient" }, "protein": { @@ -502,10 +524,10 @@ "display": "3+", "system": "dnpm-dip/mtb/ihc/protein-expression/result" }, - "tpsScore": 95, + "tpsScore": 46, "icScore": { - "code": "2", - "display": ">= 5%", + "code": "0", + "display": "< 1%", "system": "dnpm-dip/mtb/ihc/protein-expression/ic-score" }, "tcScore": { @@ -515,14 +537,98 @@ } }, { - "id": "8e7f8610-2bab-4baa-9567-98a0c71eead4", + "id": "002dd577-7a1e-4e47-ae63-bc84e641565e", "patient": { - "id": "e14bf9b6-7982-4933-a648-cfdea6484f1c", + "id": "aca5a971-28be-4089-8128-0036a4fe6f1a", "type": "Patient" }, "protein": { - "code": "HGNC:33", - "display": "ABCA3", + "code": "HGNC:34", + "display": "ABCA4", + "system": "https://www.genenames.org/" + }, + "value": { + "code": "not-exp", + "display": "Nicht exprimiert", + "system": "dnpm-dip/mtb/ihc/protein-expression/result" + }, + "tpsScore": 12, + "icScore": { + "code": "0", + "display": "< 1%", + "system": "dnpm-dip/mtb/ihc/protein-expression/ic-score" + }, + "tcScore": { + "code": "1", + "display": ">= 1%", + "system": "dnpm-dip/mtb/ihc/protein-expression/tc-score" + } + }, + { + "id": "70cfa37b-6a87-4108-a7ea-99c7c2f210dc", + "patient": { + "id": "aca5a971-28be-4089-8128-0036a4fe6f1a", + "type": "Patient" + }, + "protein": { + "code": "HGNC:3690", + "display": "FGFR3", + "system": "https://www.genenames.org/" + }, + "value": { + "code": "not-exp", + "display": "Nicht exprimiert", + "system": "dnpm-dip/mtb/ihc/protein-expression/result" + }, + "tpsScore": 29, + "icScore": { + "code": "0", + "display": "< 1%", + "system": "dnpm-dip/mtb/ihc/protein-expression/ic-score" + }, + "tcScore": { + "code": "1", + "display": ">= 1%", + "system": "dnpm-dip/mtb/ihc/protein-expression/tc-score" + } + }, + { + "id": "cad30474-e6e2-4923-bd05-57bbce01708c", + "patient": { + "id": "aca5a971-28be-4089-8128-0036a4fe6f1a", + "type": "Patient" + }, + "protein": { + "code": "HGNC:1753", + "display": "CDH13", + "system": "https://www.genenames.org/" + }, + "value": { + "code": "unknown", + "display": "untersucht, kein Ergebnis", + "system": "dnpm-dip/mtb/ihc/protein-expression/result" + }, + "tpsScore": 51, + "icScore": { + "code": "2", + "display": ">= 5%", + "system": "dnpm-dip/mtb/ihc/protein-expression/ic-score" + }, + "tcScore": { + "code": "3", + "display": ">= 10%", + "system": "dnpm-dip/mtb/ihc/protein-expression/tc-score" + } + }, + { + "id": "cf0ff1b1-e0db-48f3-aa07-684d626f939f", + "patient": { + "id": "aca5a971-28be-4089-8128-0036a4fe6f1a", + "type": "Patient" + }, + "protein": { + "code": "HGNC:1097", + "display": "BRAF", "system": "https://www.genenames.org/" }, "value": { @@ -532,41 +638,13 @@ }, "tpsScore": 81, "icScore": { - "code": "3", - "display": ">= 10%", + "code": "2", + "display": ">= 5%", "system": "dnpm-dip/mtb/ihc/protein-expression/ic-score" }, "tcScore": { - "code": "1", - "display": ">= 1%", - "system": "dnpm-dip/mtb/ihc/protein-expression/tc-score" - } - }, - { - "id": "845b905d-eef9-4a2c-9aff-cde382933968", - "patient": { - "id": "e14bf9b6-7982-4933-a648-cfdea6484f1c", - "type": "Patient" - }, - "protein": { - "code": "HGNC:1100", - "display": "BRCA1", - "system": "https://www.genenames.org/" - }, - "value": { - "code": "1+", - "display": "1+", - "system": "dnpm-dip/mtb/ihc/protein-expression/result" - }, - "tpsScore": 70, - "icScore": { - "code": "1", - "display": ">= 1%", - "system": "dnpm-dip/mtb/ihc/protein-expression/ic-score" - }, - "tcScore": { - "code": "5", - "display": ">= 50%", + "code": "2", + "display": ">= 5%", "system": "dnpm-dip/mtb/ihc/protein-expression/tc-score" } } @@ -577,19 +655,19 @@ ], "ngsReports": [ { - "id": "c21b5bdb-47e2-4579-a0d4-7bea8f12a1ae", + "id": "3788004a-2c21-4dfb-92d8-70d1b31e39d7", "patient": { - "id": "e14bf9b6-7982-4933-a648-cfdea6484f1c", + "id": "aca5a971-28be-4089-8128-0036a4fe6f1a", "type": "Patient" }, "specimen": { - "id": "c59253e3-3c11-40bd-bc35-7c089f734862", + "id": "c3f30fe7-d193-4cde-a3c2-ef8f2497df51", "type": "TumorSpecimen" }, - "issuedOn": "2025-05-30", + "issuedOn": "2025-06-24", "type": { - "code": "single", - "display": "Single", + "code": "genome-long-read", + "display": "Genome long-read", "system": "dnpm-dip/ngs/type" }, "metadata": [ @@ -597,19 +675,19 @@ "kitType": "Kit Type", "kitManufacturer": "Manufacturer", "sequencer": "Sequencer", - "referenceGenome": "HG38", + "referenceGenome": "HG19", "pipeline": "https://github.com/pipeline-project" } ], "results": { "tumorCellContent": { - "id": "94927ed9-449d-4b20-b87b-8d30c3262cd8", + "id": "26a6f41e-c2a4-4a28-ba62-95453c880579", "patient": { - "id": "e14bf9b6-7982-4933-a648-cfdea6484f1c", + "id": "aca5a971-28be-4089-8128-0036a4fe6f1a", "type": "Patient" }, "specimen": { - "id": "c59253e3-3c11-40bd-bc35-7c089f734862", + "id": "c3f30fe7-d193-4cde-a3c2-ef8f2497df51", "type": "TumorSpecimen" }, "method": { @@ -617,36 +695,36 @@ "display": "Bioinformatisch", "system": "dnpm-dip/mtb/tumor-cell-content/method" }, - "value": 0.09638668241172943 + "value": 0.9426267499137174 }, "tmb": { - "id": "b50f37ba-684a-4456-baec-1b852506522e", + "id": "7357476b-fb64-452f-9f47-28babfc7941a", "patient": { - "id": "e14bf9b6-7982-4933-a648-cfdea6484f1c", + "id": "aca5a971-28be-4089-8128-0036a4fe6f1a", "type": "Patient" }, "specimen": { - "id": "c59253e3-3c11-40bd-bc35-7c089f734862", + "id": "c3f30fe7-d193-4cde-a3c2-ef8f2497df51", "type": "TumorSpecimen" }, "value": { - "value": 111701, + "value": 98248, "unit": "Mutations per megabase" }, "interpretation": { - "code": "intermediate", - "display": "Mittel", + "code": "low", + "display": "Niedrig", "system": "dnpm-dip/mtb/ngs/tmb/interpretation" } }, "brcaness": { - "id": "ae6d8152-2ec0-46f3-bc96-a8cdb0354dff", + "id": "4e83ece7-7e39-4e46-aeae-4c8a4a726895", "patient": { - "id": "e14bf9b6-7982-4933-a648-cfdea6484f1c", + "id": "aca5a971-28be-4089-8128-0036a4fe6f1a", "type": "Patient" }, "specimen": { - "id": "c59253e3-3c11-40bd-bc35-7c089f734862", + "id": "c3f30fe7-d193-4cde-a3c2-ef8f2497df51", "type": "TumorSpecimen" }, "value": 0.5, @@ -656,20 +734,20 @@ } }, "hrdScore": { - "id": "09b18803-9465-4cd0-8525-60d7aba52cda", + "id": "09271615-ef4d-46c1-b6c0-527f0f319934", "patient": { - "id": "e14bf9b6-7982-4933-a648-cfdea6484f1c", + "id": "aca5a971-28be-4089-8128-0036a4fe6f1a", "type": "Patient" }, "specimen": { - "id": "c59253e3-3c11-40bd-bc35-7c089f734862", + "id": "c3f30fe7-d193-4cde-a3c2-ef8f2497df51", "type": "TumorSpecimen" }, - "value": 0.05766991221140638, + "value": 0.42630126429719584, "components": { - "lst": 0.702408484465023, - "loh": 0.9316758294159152, - "tai": 0.27810914785699703 + "lst": 0.06218415041578196, + "loh": 0.6133607455178999, + "tai": 0.7189481437278346 }, "interpretation": { "code": "high", @@ -679,25 +757,74 @@ }, "simpleVariants": [ { - "id": "d2209570-1391-4035-9365-765e707a7675", + "id": "e4cb43e6-a81b-48cb-8b88-db384057a771", "patient": { - "id": "e14bf9b6-7982-4933-a648-cfdea6484f1c", + "id": "aca5a971-28be-4089-8128-0036a4fe6f1a", "type": "Patient" }, "externalIds": [ { - "value": "3ff51b45-bea4-4adf-a652-68e9a8eb9ba0", + "value": "8e75df42-5a8f-4ffb-8d2e-a0b725d14d29", "system": "https://www.ncbi.nlm.nih.gov/snp" }, { - "value": "d4ef6e0d-70f3-48af-9815-12add7d405fd", + "value": "bd219662-7470-4afb-a770-1e8c8ff15b9f", "system": "https://cancer.sanger.ac.uk/cosmic" } ], - "chromosome": "chr4", + "chromosome": "chr11", "gene": { - "code": "HGNC:18615", - "display": "BRAFP1", + "code": "HGNC:886", + "display": "ATRX", + "system": "https://www.genenames.org/" + }, + "localization": [ + { + "code": "intronic", + "display": "Intronic", + "system": "dnpm-dip/variant/localization" + } + ], + "transcriptId": { + "value": "ad777423-fd8c-42c2-99e5-ee4b3b217e63", + "system": "https://www.ensembl.org" + }, + "exonId": "10", + "position": { + "start": 470 + }, + "altAllele": "T", + "refAllele": "A", + "dnaChange": "c.470A>T", + "proteinChange": "p.Gly12Cys", + "readDepth": 7, + "allelicFrequency": 0.26942267625669825, + "interpretation": { + "code": "1", + "display": "Benign", + "system": "https://www.ncbi.nlm.nih.gov/clinvar" + } + }, + { + "id": "a9487572-a2a5-4074-ba8b-1e73cf92b378", + "patient": { + "id": "aca5a971-28be-4089-8128-0036a4fe6f1a", + "type": "Patient" + }, + "externalIds": [ + { + "value": "06722bb8-59d3-40f1-9a83-3e0587d69cbb", + "system": "https://www.ncbi.nlm.nih.gov/snp" + }, + { + "value": "3da84ceb-a88a-4a88-9c4a-cced9011d171", + "system": "https://cancer.sanger.ac.uk/cosmic" + } + ], + "chromosome": "chr6", + "gene": { + "code": "HGNC:11998", + "display": "TP53", "system": "https://www.genenames.org/" }, "localization": [ @@ -708,19 +835,19 @@ } ], "transcriptId": { - "value": "b0819774-a371-4f25-898e-0e60971a3bba", - "system": "https://www.ncbi.nlm.nih.gov/refseq" + "value": "2753c548-08cb-4bb9-8a8f-99f16efe0cf3", + "system": "https://www.ensembl.org" }, - "exonId": "3", + "exonId": "4", "position": { - "start": 561 + "start": 49 }, "altAllele": "T", - "refAllele": "C", - "dnaChange": "c.561C>T", - "proteinChange": "p.Trp24=/Cys", - "readDepth": 6, - "allelicFrequency": 0.7168882236398768, + "refAllele": "G", + "dnaChange": "c.49G>T", + "proteinChange": "p.Cys28_Lys29delinsTrp", + "readDepth": 14, + "allelicFrequency": 0.07637742193107444, "interpretation": { "code": "3", "display": "Uncertain significance", @@ -728,74 +855,25 @@ } }, { - "id": "0d033c43-d69b-44b3-90f6-b816180829b5", + "id": "97975db5-6559-4bd5-8c89-ef5a34097f11", "patient": { - "id": "e14bf9b6-7982-4933-a648-cfdea6484f1c", + "id": "aca5a971-28be-4089-8128-0036a4fe6f1a", "type": "Patient" }, "externalIds": [ { - "value": "e91b92ac-b721-4dfe-a5fc-d39ad54537c9", + "value": "145627c2-bf6c-4cc8-8cbf-ec2816d58142", "system": "https://www.ncbi.nlm.nih.gov/snp" }, { - "value": "3cc72402-f627-4bbf-9468-fbb566459d81", + "value": "ffd8916a-95a7-4750-ab49-a25a576009e1", "system": "https://cancer.sanger.ac.uk/cosmic" } ], - "chromosome": "chr17", + "chromosome": "chr7", "gene": { - "code": "HGNC:3690", - "display": "FGFR3", - "system": "https://www.genenames.org/" - }, - "localization": [ - { - "code": "splicing-region", - "display": "splicing region", - "system": "dnpm-dip/variant/localization" - } - ], - "transcriptId": { - "value": "6512c902-f492-4951-a614-ff4801d2c308", - "system": "https://www.ncbi.nlm.nih.gov/refseq" - }, - "exonId": "2", - "position": { - "start": 193 - }, - "altAllele": "A", - "refAllele": "G", - "dnaChange": "c.193G>A", - "proteinChange": "p.Trp24=/Cys", - "readDepth": 5, - "allelicFrequency": 0.1081527557463462, - "interpretation": { - "code": "2", - "display": "Likely benign", - "system": "https://www.ncbi.nlm.nih.gov/clinvar" - } - }, - { - "id": "ea5a3264-8d84-4312-ba18-7de0da5a89b5", - "patient": { - "id": "e14bf9b6-7982-4933-a648-cfdea6484f1c", - "type": "Patient" - }, - "externalIds": [ - { - "value": "29ecbc7d-32bc-41ec-8654-4dbfb76a2333", - "system": "https://www.ncbi.nlm.nih.gov/snp" - }, - { - "value": "e14e1284-920c-429d-9893-8a027eee414c", - "system": "https://cancer.sanger.ac.uk/cosmic" - } - ], - "chromosome": "chr1", - "gene": { - "code": "HGNC:6407", - "display": "KRAS", + "code": "HGNC:886", + "display": "ATRX", "system": "https://www.genenames.org/" }, "localization": [ @@ -806,45 +884,94 @@ } ], "transcriptId": { - "value": "dd7b0cca-2707-4bf7-a361-37906e36a22c", - "system": "https://www.ensembl.org" + "value": "c92dde51-20b5-4c4b-af2d-f4ea9ab58932", + "system": "https://www.ncbi.nlm.nih.gov/refseq" }, - "exonId": "8", + "exonId": "11", "position": { - "start": 131 + "start": 223 }, - "altAllele": "G", + "altAllele": "A", "refAllele": "T", - "dnaChange": "c.131T>G", - "proteinChange": "p.His4_Gln5insAla", - "readDepth": 24, - "allelicFrequency": 0.7601485607234963, + "dnaChange": "c.223T>A", + "proteinChange": "p.Cys28delinsTrpVal", + "readDepth": 17, + "allelicFrequency": 0.36264101766053647, "interpretation": { - "code": "5", - "display": "Pathogenic", + "code": "2", + "display": "Likely benign", "system": "https://www.ncbi.nlm.nih.gov/clinvar" } }, { - "id": "5feae8bd-710c-42b6-ba52-e9a33be957b7", + "id": "9b1793a8-6f73-44d1-a840-cd0314206cb9", "patient": { - "id": "e14bf9b6-7982-4933-a648-cfdea6484f1c", + "id": "aca5a971-28be-4089-8128-0036a4fe6f1a", "type": "Patient" }, "externalIds": [ { - "value": "45515482-873f-46ea-818e-9b2b4dd8d389", + "value": "9cfa6eec-1d3b-4d9f-8b36-ad1d69e4d853", "system": "https://www.ncbi.nlm.nih.gov/snp" }, { - "value": "c49c7e81-c34d-445e-804f-d110718752e1", + "value": "668d1343-38fc-45bd-b67e-c80b092bc737", "system": "https://cancer.sanger.ac.uk/cosmic" } ], - "chromosome": "chr4", + "chromosome": "chr19", "gene": { - "code": "HGNC:34", - "display": "ABCA4", + "code": "HGNC:11998", + "display": "TP53", + "system": "https://www.genenames.org/" + }, + "localization": [ + { + "code": "intronic", + "display": "Intronic", + "system": "dnpm-dip/variant/localization" + } + ], + "transcriptId": { + "value": "fdf36c25-71a8-4782-bffb-9a03890b1c32", + "system": "https://www.ncbi.nlm.nih.gov/refseq" + }, + "exonId": "5", + "position": { + "start": 450 + }, + "altAllele": "C", + "refAllele": "G", + "dnaChange": "c.450G>C", + "proteinChange": "p.Gly2_Met46del", + "readDepth": 18, + "allelicFrequency": 0.17830646111898962, + "interpretation": { + "code": "1", + "display": "Benign", + "system": "https://www.ncbi.nlm.nih.gov/clinvar" + } + }, + { + "id": "314a3a51-c9e5-42ab-88b7-15392cc40529", + "patient": { + "id": "aca5a971-28be-4089-8128-0036a4fe6f1a", + "type": "Patient" + }, + "externalIds": [ + { + "value": "feb21710-a2b3-4bce-9125-20b554388f58", + "system": "https://www.ncbi.nlm.nih.gov/snp" + }, + { + "value": "2a98ad48-c913-4c0a-acbd-f839ee19d883", + "system": "https://cancer.sanger.ac.uk/cosmic" + } + ], + "chromosome": "chr9", + "gene": { + "code": "HGNC:1097", + "display": "BRAF", "system": "https://www.genenames.org/" }, "localization": [ @@ -855,45 +982,94 @@ } ], "transcriptId": { - "value": "90ed01ce-b09b-44db-87e5-f8b083664838", + "value": "ce4872b5-737f-4e9f-9f2f-bde6213cca5d", "system": "https://www.ncbi.nlm.nih.gov/refseq" }, - "exonId": "2", + "exonId": "3", "position": { - "start": 445 + "start": 61 }, - "altAllele": "C", - "refAllele": "A", - "dnaChange": "c.445A>C", - "proteinChange": "p.Gly2_Met46del", - "readDepth": 15, - "allelicFrequency": 0.42158645101228087, + "altAllele": "A", + "refAllele": "G", + "dnaChange": "c.61G>A", + "proteinChange": "p.Cys28_Lys29delinsTrp", + "readDepth": 21, + "allelicFrequency": 0.9523091015802564, "interpretation": { - "code": "4", - "display": "Likely pathogenic", + "code": "2", + "display": "Likely benign", "system": "https://www.ncbi.nlm.nih.gov/clinvar" } }, { - "id": "7748dd2f-e547-4412-996b-c8116040a5d4", + "id": "47fa0995-b468-4516-ac55-9318830fd616", "patient": { - "id": "e14bf9b6-7982-4933-a648-cfdea6484f1c", + "id": "aca5a971-28be-4089-8128-0036a4fe6f1a", "type": "Patient" }, "externalIds": [ { - "value": "5600f37a-7570-4177-8ca9-43f08f297c1b", + "value": "e1a320af-7a9e-4163-8894-bd2c4311bb49", "system": "https://www.ncbi.nlm.nih.gov/snp" }, { - "value": "1c6569e0-a8e6-477a-956a-c95e04097143", + "value": "e53e0494-e897-4272-86d1-5d4614eff405", "system": "https://cancer.sanger.ac.uk/cosmic" } ], - "chromosome": "chr3", + "chromosome": "chrX", "gene": { - "code": "HGNC:25829", - "display": "ABRAXAS1", + "code": "HGNC:21597", + "display": "ACAD10", + "system": "https://www.genenames.org/" + }, + "localization": [ + { + "code": "splicing-region", + "display": "splicing region", + "system": "dnpm-dip/variant/localization" + } + ], + "transcriptId": { + "value": "4f365f89-e0e0-4019-b84c-67efb2ca118d", + "system": "https://www.ensembl.org" + }, + "exonId": "2", + "position": { + "start": 577 + }, + "altAllele": "G", + "refAllele": "C", + "dnaChange": "c.577C>G", + "proteinChange": "p.Trp24=/Cys", + "readDepth": 17, + "allelicFrequency": 0.23140283502604808, + "interpretation": { + "code": "2", + "display": "Likely benign", + "system": "https://www.ncbi.nlm.nih.gov/clinvar" + } + }, + { + "id": "828dfee4-37e4-485a-8c6f-49f863903f3f", + "patient": { + "id": "aca5a971-28be-4089-8128-0036a4fe6f1a", + "type": "Patient" + }, + "externalIds": [ + { + "value": "a05503d8-3ebc-43e8-a7bd-c6f2893b87fd", + "system": "https://www.ncbi.nlm.nih.gov/snp" + }, + { + "value": "2868dd12-0a79-4d33-b421-8d4fa94a79f2", + "system": "https://cancer.sanger.ac.uk/cosmic" + } + ], + "chromosome": "chr22", + "gene": { + "code": "HGNC:886", + "display": "ATRX", "system": "https://www.genenames.org/" }, "localization": [ @@ -904,83 +1080,34 @@ } ], "transcriptId": { - "value": "e97218d5-8e07-4516-980b-9bc3a944f5ed", - "system": "https://www.ensembl.org" + "value": "01fbcd0c-6518-4910-801b-bd7a7da9bdf1", + "system": "https://www.ncbi.nlm.nih.gov/refseq" }, - "exonId": "3", + "exonId": "11", "position": { - "start": 52 + "start": 535 }, - "altAllele": "A", - "refAllele": "T", - "dnaChange": "c.52T>A", - "proteinChange": "p.(Glu125_Ala132delinsGlyLeuHisArgPheIleValLeu)", - "readDepth": 16, - "allelicFrequency": 0.43914773954080655, + "altAllele": "T", + "refAllele": "C", + "dnaChange": "c.535C>T", + "proteinChange": "p.Arg78_Gly79insX[23]", + "readDepth": 23, + "allelicFrequency": 0.6339367647943907, "interpretation": { "code": "2", "display": "Likely benign", "system": "https://www.ncbi.nlm.nih.gov/clinvar" } - }, - { - "id": "c6e4a8ca-9fd5-46d6-b9c3-4fb92fa3ad7f", - "patient": { - "id": "e14bf9b6-7982-4933-a648-cfdea6484f1c", - "type": "Patient" - }, - "externalIds": [ - { - "value": "414cfb9c-1a27-49f4-89a7-20fa9b34d4c1", - "system": "https://www.ncbi.nlm.nih.gov/snp" - }, - { - "value": "029491a2-a2ec-4153-8f58-0a0643b82c7f", - "system": "https://cancer.sanger.ac.uk/cosmic" - } - ], - "chromosome": "chr19", - "gene": { - "code": "HGNC:25829", - "display": "ABRAXAS1", - "system": "https://www.genenames.org/" - }, - "localization": [ - { - "code": "regulatory-region", - "display": "Regulatory region", - "system": "dnpm-dip/variant/localization" - } - ], - "transcriptId": { - "value": "12393377-f07e-468b-bb15-a5dd2498cd31", - "system": "https://www.ensembl.org" - }, - "exonId": "10", - "position": { - "start": 77 - }, - "altAllele": "G", - "refAllele": "C", - "dnaChange": "c.77C>G", - "proteinChange": "p.Lys23_Val25del", - "readDepth": 23, - "allelicFrequency": 0.7263541136743669, - "interpretation": { - "code": "1", - "display": "Benign", - "system": "https://www.ncbi.nlm.nih.gov/clinvar" - } } ], "copyNumberVariants": [ { - "id": "def11b75-84d6-4910-8f0a-e289326fa14c", + "id": "2a7b4922-3cc0-4504-b5d4-fda8a76fc9ac", "patient": { - "id": "e14bf9b6-7982-4933-a648-cfdea6484f1c", + "id": "aca5a971-28be-4089-8128-0036a4fe6f1a", "type": "Patient" }, - "chromosome": "chr17", + "chromosome": "chr20", "localization": [ { "code": "intronic", @@ -989,194 +1116,37 @@ } ], "startRange": { - "start": 49051, - "end": 49093 + "start": 47283, + "end": 47325 }, "endRange": { - "start": 49114, - "end": 49164 + "start": 47554, + "end": 47604 }, - "totalCopyNumber": 4, - "relativeCopyNumber": 0.951841616210335, - "cnA": 0.4819056712797626, - "cnB": 0.6266734124941649, + "totalCopyNumber": 3, + "relativeCopyNumber": 0.5183732460975659, + "cnA": 0.4575487225914149, + "cnB": 0.2296504258992984, "reportedAffectedGenes": [ - { - "code": "HGNC:33", - "display": "ABCA3", - "system": "https://www.genenames.org/" - }, { "code": "HGNC:5173", "display": "HRAS", "system": "https://www.genenames.org/" }, - { - "code": "HGNC:25662", - "display": "AAGAB", - "system": "https://www.genenames.org/" - }, - { - "code": "HGNC:76", - "display": "ABL1", - "system": "https://www.genenames.org/" - }, - { - "code": "HGNC:886", - "display": "ATRX", - "system": "https://www.genenames.org/" - }, - { - "code": "HGNC:9967", - "display": "RET", - "system": "https://www.genenames.org/" - }, - { - "code": "HGNC:21298", - "display": "AACS", - "system": "https://www.genenames.org/" - }, - { - "code": "HGNC:3689", - "display": "FGFR2", - "system": "https://www.genenames.org/" - }, { "code": "HGNC:3942", "display": "MTOR", "system": "https://www.genenames.org/" }, - { - "code": "HGNC:3236", - "display": "EGFR", - "system": "https://www.genenames.org/" - } - ], - "reportedFocality": "partial q-arm", - "type": { - "code": "high-level-gain", - "display": "High-level-gain", - "system": "dnpm-dip/mtb/ngs-report/cnv/type" - }, - "copyNumberNeutralLoH": [ - { - "code": "HGNC:33", - "display": "ABCA3", - "system": "https://www.genenames.org/" - }, - { - "code": "HGNC:5173", - "display": "HRAS", - "system": "https://www.genenames.org/" - }, - { - "code": "HGNC:1753", - "display": "CDH13", - "system": "https://www.genenames.org/" - }, { "code": "HGNC:1777", "display": "CDK6", "system": "https://www.genenames.org/" }, - { - "code": "HGNC:1097", - "display": "BRAF", - "system": "https://www.genenames.org/" - }, - { - "code": "HGNC:25662", - "display": "AAGAB", - "system": "https://www.genenames.org/" - }, - { - "code": "HGNC:1100", - "display": "BRCA1", - "system": "https://www.genenames.org/" - }, - { - "code": "HGNC:9967", - "display": "RET", - "system": "https://www.genenames.org/" - }, - { - "code": "HGNC:21298", - "display": "AACS", - "system": "https://www.genenames.org/" - }, - { - "code": "HGNC:3689", - "display": "FGFR2", - "system": "https://www.genenames.org/" - } - ] - }, - { - "id": "a8702d47-5520-458e-929f-fdd2bc55fe17", - "patient": { - "id": "e14bf9b6-7982-4933-a648-cfdea6484f1c", - "type": "Patient" - }, - "chromosome": "chr22", - "localization": [ - { - "code": "intergenic", - "display": "Intergenic", - "system": "dnpm-dip/variant/localization" - } - ], - "startRange": { - "start": 48141, - "end": 48183 - }, - "endRange": { - "start": 48711, - "end": 48761 - }, - "totalCopyNumber": 2, - "relativeCopyNumber": 0.5067539649405646, - "cnA": 0.9335404521608939, - "cnB": 0.04708321769922241, - "reportedAffectedGenes": [ - { - "code": "HGNC:3690", - "display": "FGFR3", - "system": "https://www.genenames.org/" - }, - { - "code": "HGNC:1097", - "display": "BRAF", - "system": "https://www.genenames.org/" - }, { "code": "HGNC:76", "display": "ABL1", "system": "https://www.genenames.org/" - }, - { - "code": "HGNC:18615", - "display": "BRAFP1", - "system": "https://www.genenames.org/" - }, - { - "code": "HGNC:9967", - "display": "RET", - "system": "https://www.genenames.org/" - }, - { - "code": "HGNC:21298", - "display": "AACS", - "system": "https://www.genenames.org/" - }, - { - "code": "HGNC:3236", - "display": "EGFR", - "system": "https://www.genenames.org/" - }, - { - "code": "HGNC:21597", - "display": "ACAD10", - "system": "https://www.genenames.org/" } ], "reportedFocality": "partial q-arm", @@ -1186,177 +1156,6 @@ "system": "dnpm-dip/mtb/ngs-report/cnv/type" }, "copyNumberNeutralLoH": [ - { - "code": "HGNC:33", - "display": "ABCA3", - "system": "https://www.genenames.org/" - }, - { - "code": "HGNC:11998", - "display": "TP53", - "system": "https://www.genenames.org/" - }, - { - "code": "HGNC:5173", - "display": "HRAS", - "system": "https://www.genenames.org/" - }, - { - "code": "HGNC:1100", - "display": "BRCA1", - "system": "https://www.genenames.org/" - }, - { - "code": "HGNC:391", - "display": "AKT1", - "system": "https://www.genenames.org/" - }, - { - "code": "HGNC:3689", - "display": "FGFR2", - "system": "https://www.genenames.org/" - }, - { - "code": "HGNC:3236", - "display": "EGFR", - "system": "https://www.genenames.org/" - }, - { - "code": "HGNC:18615", - "display": "BRAFP1", - "system": "https://www.genenames.org/" - }, - { - "code": "HGNC:6407", - "display": "KRAS", - "system": "https://www.genenames.org/" - } - ] - }, - { - "id": "e459c5b6-16ab-45ad-be8e-588a466fa42e", - "patient": { - "id": "e14bf9b6-7982-4933-a648-cfdea6484f1c", - "type": "Patient" - }, - "chromosome": "chr22", - "localization": [ - { - "code": "regulatory-region", - "display": "Regulatory region", - "system": "dnpm-dip/variant/localization" - } - ], - "startRange": { - "start": 10844, - "end": 10886 - }, - "endRange": { - "start": 11502, - "end": 11552 - }, - "totalCopyNumber": 3, - "relativeCopyNumber": 0.18257424389770927, - "cnA": 0.6677514703429981, - "cnB": 0.03993481724373449, - "reportedAffectedGenes": [ - { - "code": "HGNC:33", - "display": "ABCA3", - "system": "https://www.genenames.org/" - }, - { - "code": "HGNC:886", - "display": "ATRX", - "system": "https://www.genenames.org/" - }, - { - "code": "HGNC:6407", - "display": "KRAS", - "system": "https://www.genenames.org/" - } - ], - "reportedFocality": "partial q-arm", - "type": { - "code": "low-level-gain", - "display": "Low-level-gain", - "system": "dnpm-dip/mtb/ngs-report/cnv/type" - }, - "copyNumberNeutralLoH": [ - { - "code": "HGNC:33", - "display": "ABCA3", - "system": "https://www.genenames.org/" - }, - { - "code": "HGNC:1753", - "display": "CDH13", - "system": "https://www.genenames.org/" - }, - { - "code": "HGNC:1100", - "display": "BRCA1", - "system": "https://www.genenames.org/" - }, - { - "code": "HGNC:886", - "display": "ATRX", - "system": "https://www.genenames.org/" - }, - { - "code": "HGNC:1777", - "display": "CDK6", - "system": "https://www.genenames.org/" - }, - { - "code": "HGNC:9967", - "display": "RET", - "system": "https://www.genenames.org/" - }, - { - "code": "HGNC:3236", - "display": "EGFR", - "system": "https://www.genenames.org/" - }, - { - "code": "HGNC:6407", - "display": "KRAS", - "system": "https://www.genenames.org/" - } - ] - }, - { - "id": "6050ca03-a0ae-4da7-87b8-76cac7dffa8d", - "patient": { - "id": "e14bf9b6-7982-4933-a648-cfdea6484f1c", - "type": "Patient" - }, - "chromosome": "chr22", - "localization": [ - { - "code": "splicing-region", - "display": "splicing region", - "system": "dnpm-dip/variant/localization" - } - ], - "startRange": { - "start": 29573, - "end": 29615 - }, - "endRange": { - "start": 30148, - "end": 30198 - }, - "totalCopyNumber": 5, - "relativeCopyNumber": 0.3733910734264396, - "cnA": 0.4299750761842057, - "cnB": 0.20874476574745604, - "reportedAffectedGenes": [ - { - "code": "HGNC:33", - "display": "ABCA3", - "system": "https://www.genenames.org/" - }, { "code": "HGNC:11998", "display": "TP53", @@ -1373,23 +1172,80 @@ "system": "https://www.genenames.org/" }, { - "code": "HGNC:6973", - "display": "MDM2", + "code": "HGNC:391", + "display": "AKT1", "system": "https://www.genenames.org/" }, { - "code": "HGNC:1753", - "display": "CDH13", + "code": "HGNC:21298", + "display": "AACS", + "system": "https://www.genenames.org/" + } + ] + }, + { + "id": "da5cc035-4c3a-4178-b8f1-9beb10e26bfa", + "patient": { + "id": "aca5a971-28be-4089-8128-0036a4fe6f1a", + "type": "Patient" + }, + "chromosome": "chr12", + "localization": [ + { + "code": "coding-region", + "display": "Coding region", + "system": "dnpm-dip/variant/localization" + } + ], + "startRange": { + "start": 47366, + "end": 47408 + }, + "endRange": { + "start": 47422, + "end": 47472 + }, + "totalCopyNumber": 5, + "relativeCopyNumber": 0.042907471951150966, + "cnA": 0.7031003234003745, + "cnB": 0.45868310119316547, + "reportedAffectedGenes": [ + { + "code": "HGNC:1097", + "display": "BRAF", "system": "https://www.genenames.org/" }, { - "code": "HGNC:25662", - "display": "AAGAB", + "code": "HGNC:886", + "display": "ATRX", "system": "https://www.genenames.org/" }, { - "code": "HGNC:76", - "display": "ABL1", + "code": "HGNC:21298", + "display": "AACS", + "system": "https://www.genenames.org/" + }, + { + "code": "HGNC:3689", + "display": "FGFR2", + "system": "https://www.genenames.org/" + } + ], + "reportedFocality": "partial q-arm", + "type": { + "code": "high-level-gain", + "display": "High-level-gain", + "system": "dnpm-dip/mtb/ngs-report/cnv/type" + }, + "copyNumberNeutralLoH": [ + { + "code": "HGNC:3690", + "display": "FGFR3", + "system": "https://www.genenames.org/" + }, + { + "code": "HGNC:391", + "display": "AKT1", "system": "https://www.genenames.org/" }, { @@ -1397,14 +1253,93 @@ "display": "FGFR2", "system": "https://www.genenames.org/" }, + { + "code": "HGNC:21597", + "display": "ACAD10", + "system": "https://www.genenames.org/" + }, { "code": "HGNC:6407", "display": "KRAS", "system": "https://www.genenames.org/" }, { - "code": "HGNC:34", - "display": "ABCA4", + "code": "HGNC:25662", + "display": "AAGAB", + "system": "https://www.genenames.org/" + }, + { + "code": "HGNC:1100", + "display": "BRCA1", + "system": "https://www.genenames.org/" + } + ] + }, + { + "id": "6d8cfac1-7809-46c3-afcb-cf663de78f7f", + "patient": { + "id": "aca5a971-28be-4089-8128-0036a4fe6f1a", + "type": "Patient" + }, + "chromosome": "chr2", + "localization": [ + { + "code": "intergenic", + "display": "Intergenic", + "system": "dnpm-dip/variant/localization" + } + ], + "startRange": { + "start": 21639, + "end": 21681 + }, + "endRange": { + "start": 22558, + "end": 22608 + }, + "totalCopyNumber": 4, + "relativeCopyNumber": 0.0963886754685026, + "cnA": 0.7203179871076737, + "cnB": 0.34976893933294917, + "reportedAffectedGenes": [ + { + "code": "HGNC:33", + "display": "ABCA3", + "system": "https://www.genenames.org/" + }, + { + "code": "HGNC:25829", + "display": "ABRAXAS1", + "system": "https://www.genenames.org/" + }, + { + "code": "HGNC:3690", + "display": "FGFR3", + "system": "https://www.genenames.org/" + }, + { + "code": "HGNC:1100", + "display": "BRCA1", + "system": "https://www.genenames.org/" + }, + { + "code": "HGNC:76", + "display": "ABL1", + "system": "https://www.genenames.org/" + }, + { + "code": "HGNC:1777", + "display": "CDK6", + "system": "https://www.genenames.org/" + }, + { + "code": "HGNC:21298", + "display": "AACS", + "system": "https://www.genenames.org/" + }, + { + "code": "HGNC:3689", + "display": "FGFR2", "system": "https://www.genenames.org/" }, { @@ -1416,6 +1351,16 @@ "code": "HGNC:3236", "display": "EGFR", "system": "https://www.genenames.org/" + }, + { + "code": "HGNC:18615", + "display": "BRAFP1", + "system": "https://www.genenames.org/" + }, + { + "code": "HGNC:6407", + "display": "KRAS", + "system": "https://www.genenames.org/" } ], "reportedFocality": "partial q-arm", @@ -1431,8 +1376,18 @@ "system": "https://www.genenames.org/" }, { - "code": "HGNC:6973", - "display": "MDM2", + "code": "HGNC:1097", + "display": "BRAF", + "system": "https://www.genenames.org/" + }, + { + "code": "HGNC:391", + "display": "AKT1", + "system": "https://www.genenames.org/" + }, + { + "code": "HGNC:6407", + "display": "KRAS", "system": "https://www.genenames.org/" }, { @@ -1440,6 +1395,269 @@ "display": "CDH13", "system": "https://www.genenames.org/" }, + { + "code": "HGNC:3690", + "display": "FGFR3", + "system": "https://www.genenames.org/" + } + ] + }, + { + "id": "79b1b2f1-eece-469a-bf9d-d742ace3b4f5", + "patient": { + "id": "aca5a971-28be-4089-8128-0036a4fe6f1a", + "type": "Patient" + }, + "chromosome": "chr4", + "localization": [ + { + "code": "splicing-region", + "display": "splicing region", + "system": "dnpm-dip/variant/localization" + } + ], + "startRange": { + "start": 10032, + "end": 10074 + }, + "endRange": { + "start": 10429, + "end": 10479 + }, + "totalCopyNumber": 2, + "relativeCopyNumber": 0.43102997556480316, + "cnA": 0.0626602855041446, + "cnB": 0.9272306017862723, + "reportedAffectedGenes": [ + { + "code": "HGNC:3690", + "display": "FGFR3", + "system": "https://www.genenames.org/" + }, + { + "code": "HGNC:76", + "display": "ABL1", + "system": "https://www.genenames.org/" + }, + { + "code": "HGNC:9967", + "display": "RET", + "system": "https://www.genenames.org/" + }, + { + "code": "HGNC:6407", + "display": "KRAS", + "system": "https://www.genenames.org/" + }, + { + "code": "HGNC:1097", + "display": "BRAF", + "system": "https://www.genenames.org/" + }, + { + "code": "HGNC:25662", + "display": "AAGAB", + "system": "https://www.genenames.org/" + } + ], + "reportedFocality": "partial q-arm", + "type": { + "code": "low-level-gain", + "display": "Low-level-gain", + "system": "dnpm-dip/mtb/ngs-report/cnv/type" + }, + "copyNumberNeutralLoH": [ + { + "code": "HGNC:11998", + "display": "TP53", + "system": "https://www.genenames.org/" + }, + { + "code": "HGNC:25829", + "display": "ABRAXAS1", + "system": "https://www.genenames.org/" + }, + { + "code": "HGNC:391", + "display": "AKT1", + "system": "https://www.genenames.org/" + }, + { + "code": "HGNC:1777", + "display": "CDK6", + "system": "https://www.genenames.org/" + }, + { + "code": "HGNC:34", + "display": "ABCA4", + "system": "https://www.genenames.org/" + }, + { + "code": "HGNC:18615", + "display": "BRAFP1", + "system": "https://www.genenames.org/" + } + ] + }, + { + "id": "7ef061c2-25d3-4ab1-b3b5-415711e74763", + "patient": { + "id": "aca5a971-28be-4089-8128-0036a4fe6f1a", + "type": "Patient" + }, + "chromosome": "chr1", + "localization": [ + { + "code": "intronic", + "display": "Intronic", + "system": "dnpm-dip/variant/localization" + } + ], + "startRange": { + "start": 21367, + "end": 21409 + }, + "endRange": { + "start": 22243, + "end": 22293 + }, + "totalCopyNumber": 6, + "relativeCopyNumber": 0.5325580143964234, + "cnA": 0.001090613467988999, + "cnB": 0.796867620835479, + "reportedAffectedGenes": [ + { + "code": "HGNC:11998", + "display": "TP53", + "system": "https://www.genenames.org/" + }, + { + "code": "HGNC:25829", + "display": "ABRAXAS1", + "system": "https://www.genenames.org/" + }, + { + "code": "HGNC:76", + "display": "ABL1", + "system": "https://www.genenames.org/" + }, + { + "code": "HGNC:6407", + "display": "KRAS", + "system": "https://www.genenames.org/" + }, + { + "code": "HGNC:1097", + "display": "BRAF", + "system": "https://www.genenames.org/" + }, + { + "code": "HGNC:1100", + "display": "BRCA1", + "system": "https://www.genenames.org/" + }, + { + "code": "HGNC:34", + "display": "ABCA4", + "system": "https://www.genenames.org/" + }, + { + "code": "HGNC:3942", + "display": "MTOR", + "system": "https://www.genenames.org/" + } + ], + "reportedFocality": "partial q-arm", + "type": { + "code": "high-level-gain", + "display": "High-level-gain", + "system": "dnpm-dip/mtb/ngs-report/cnv/type" + }, + "copyNumberNeutralLoH": [ + { + "code": "HGNC:25829", + "display": "ABRAXAS1", + "system": "https://www.genenames.org/" + }, + { + "code": "HGNC:6973", + "display": "MDM2", + "system": "https://www.genenames.org/" + }, + { + "code": "HGNC:25662", + "display": "AAGAB", + "system": "https://www.genenames.org/" + }, + { + "code": "HGNC:76", + "display": "ABL1", + "system": "https://www.genenames.org/" + }, + { + "code": "HGNC:886", + "display": "ATRX", + "system": "https://www.genenames.org/" + }, + { + "code": "HGNC:3689", + "display": "FGFR2", + "system": "https://www.genenames.org/" + }, + { + "code": "HGNC:3942", + "display": "MTOR", + "system": "https://www.genenames.org/" + }, + { + "code": "HGNC:3236", + "display": "EGFR", + "system": "https://www.genenames.org/" + } + ] + }, + { + "id": "b6c87ffe-cafa-4017-8304-cc7d5e5ed6ef", + "patient": { + "id": "aca5a971-28be-4089-8128-0036a4fe6f1a", + "type": "Patient" + }, + "chromosome": "chr4", + "localization": [ + { + "code": "intergenic", + "display": "Intergenic", + "system": "dnpm-dip/variant/localization" + } + ], + "startRange": { + "start": 28913, + "end": 28955 + }, + "endRange": { + "start": 29073, + "end": 29123 + }, + "totalCopyNumber": 5, + "relativeCopyNumber": 0.24079048197395347, + "cnA": 0.8864208860638342, + "cnB": 0.9335254612742215, + "reportedAffectedGenes": [ + { + "code": "HGNC:11998", + "display": "TP53", + "system": "https://www.genenames.org/" + }, + { + "code": "HGNC:25829", + "display": "ABRAXAS1", + "system": "https://www.genenames.org/" + }, + { + "code": "HGNC:886", + "display": "ATRX", + "system": "https://www.genenames.org/" + }, { "code": "HGNC:1777", "display": "CDK6", @@ -1451,8 +1669,76 @@ "system": "https://www.genenames.org/" }, { - "code": "HGNC:21597", - "display": "ACAD10", + "code": "HGNC:3689", + "display": "FGFR2", + "system": "https://www.genenames.org/" + }, + { + "code": "HGNC:34", + "display": "ABCA4", + "system": "https://www.genenames.org/" + }, + { + "code": "HGNC:3942", + "display": "MTOR", + "system": "https://www.genenames.org/" + }, + { + "code": "HGNC:18615", + "display": "BRAFP1", + "system": "https://www.genenames.org/" + }, + { + "code": "HGNC:6407", + "display": "KRAS", + "system": "https://www.genenames.org/" + } + ], + "reportedFocality": "partial q-arm", + "type": { + "code": "high-level-gain", + "display": "High-level-gain", + "system": "dnpm-dip/mtb/ngs-report/cnv/type" + }, + "copyNumberNeutralLoH": [ + { + "code": "HGNC:33", + "display": "ABCA3", + "system": "https://www.genenames.org/" + }, + { + "code": "HGNC:11998", + "display": "TP53", + "system": "https://www.genenames.org/" + }, + { + "code": "HGNC:25829", + "display": "ABRAXAS1", + "system": "https://www.genenames.org/" + }, + { + "code": "HGNC:21298", + "display": "AACS", + "system": "https://www.genenames.org/" + }, + { + "code": "HGNC:34", + "display": "ABCA4", + "system": "https://www.genenames.org/" + }, + { + "code": "HGNC:18615", + "display": "BRAFP1", + "system": "https://www.genenames.org/" + }, + { + "code": "HGNC:1097", + "display": "BRAF", + "system": "https://www.genenames.org/" + }, + { + "code": "HGNC:1100", + "display": "BRCA1", "system": "https://www.genenames.org/" } ] @@ -1460,9 +1746,9 @@ ], "dnaFusions": [ { - "id": "1901fef1-f341-49cd-80b3-80af8f6f7bea", + "id": "80439a87-61a6-449f-ab0e-ea207336b650", "patient": { - "id": "e14bf9b6-7982-4933-a648-cfdea6484f1c", + "id": "aca5a971-28be-4089-8128-0036a4fe6f1a", "type": "Patient" }, "localization": [ @@ -1473,29 +1759,95 @@ } ], "fusionPartner5prime": { - "chromosome": "chr9", + "chromosome": "chr10", "gene": { - "code": "HGNC:21597", - "display": "ACAD10", + "code": "HGNC:1100", + "display": "BRCA1", "system": "https://www.genenames.org/" }, - "position": 968 + "position": 988 }, "fusionPartner3prime": { - "chromosome": "chrX", + "chromosome": "chr19", "gene": { - "code": "HGNC:6407", - "display": "KRAS", + "code": "HGNC:1097", + "display": "BRAF", "system": "https://www.genenames.org/" }, - "position": 61 + "position": 337 }, "reportedNumReads": 7 }, { - "id": "12ca0894-8fe6-4243-aed7-d630df490cac", + "id": "9d1e2965-d90a-40f1-b40f-c73de15980cf", "patient": { - "id": "e14bf9b6-7982-4933-a648-cfdea6484f1c", + "id": "aca5a971-28be-4089-8128-0036a4fe6f1a", + "type": "Patient" + }, + "localization": [ + { + "code": "regulatory-region", + "display": "Regulatory region", + "system": "dnpm-dip/variant/localization" + } + ], + "fusionPartner5prime": { + "chromosome": "chr3", + "gene": { + "code": "HGNC:6973", + "display": "MDM2", + "system": "https://www.genenames.org/" + }, + "position": 61 + }, + "fusionPartner3prime": { + "chromosome": "chrX", + "gene": { + "code": "HGNC:886", + "display": "ATRX", + "system": "https://www.genenames.org/" + }, + "position": 728 + }, + "reportedNumReads": 5 + }, + { + "id": "16efbf55-955f-4044-94db-905b74c67d6e", + "patient": { + "id": "aca5a971-28be-4089-8128-0036a4fe6f1a", + "type": "Patient" + }, + "localization": [ + { + "code": "coding-region", + "display": "Coding region", + "system": "dnpm-dip/variant/localization" + } + ], + "fusionPartner5prime": { + "chromosome": "chr3", + "gene": { + "code": "HGNC:391", + "display": "AKT1", + "system": "https://www.genenames.org/" + }, + "position": 307 + }, + "fusionPartner3prime": { + "chromosome": "chr22", + "gene": { + "code": "HGNC:11998", + "display": "TP53", + "system": "https://www.genenames.org/" + }, + "position": 297 + }, + "reportedNumReads": 3 + }, + { + "id": "b184adc5-50e4-4a48-8fc4-16442eadec78", + "patient": { + "id": "aca5a971-28be-4089-8128-0036a4fe6f1a", "type": "Patient" }, "localization": [ @@ -1505,131 +1857,90 @@ "system": "dnpm-dip/variant/localization" } ], - "fusionPartner5prime": { - "chromosome": "chr20", - "gene": { - "code": "HGNC:18615", - "display": "BRAFP1", - "system": "https://www.genenames.org/" - }, - "position": 462 - }, - "fusionPartner3prime": { - "chromosome": "chr3", - "gene": { - "code": "HGNC:3942", - "display": "MTOR", - "system": "https://www.genenames.org/" - }, - "position": 984 - }, - "reportedNumReads": 5 - }, - { - "id": "17335f8f-1ac4-43a7-9fdf-5574d8390bf5", - "patient": { - "id": "e14bf9b6-7982-4933-a648-cfdea6484f1c", - "type": "Patient" - }, - "localization": [ - { - "code": "intronic", - "display": "Intronic", - "system": "dnpm-dip/variant/localization" - } - ], "fusionPartner5prime": { "chromosome": "chr21", "gene": { - "code": "HGNC:1100", - "display": "BRCA1", + "code": "HGNC:1753", + "display": "CDH13", "system": "https://www.genenames.org/" }, - "position": 930 + "position": 732 }, "fusionPartner3prime": { "chromosome": "chr14", "gene": { - "code": "HGNC:76", - "display": "ABL1", + "code": "HGNC:3689", + "display": "FGFR2", "system": "https://www.genenames.org/" }, - "position": 896 + "position": 72 }, - "reportedNumReads": 7 - }, + "reportedNumReads": 5 + } + ], + "rnaFusions": [ { - "id": "a6acd3bb-127b-44f6-8331-dc4b2488ed38", + "id": "2d813e27-e662-46b6-8bfa-62473c591a68", "patient": { - "id": "e14bf9b6-7982-4933-a648-cfdea6484f1c", + "id": "aca5a971-28be-4089-8128-0036a4fe6f1a", "type": "Patient" }, + "externalIds": [ + { + "value": "8560bec8-434c-485a-9dcf-357903a668df", + "system": "https://cancer.sanger.ac.uk/cosmic" + } + ], "localization": [ { - "code": "splicing-region", - "display": "splicing region", + "code": "intergenic", + "display": "Intergenic", "system": "dnpm-dip/variant/localization" } ], "fusionPartner5prime": { - "chromosome": "chr8", - "gene": { - "code": "HGNC:1097", - "display": "BRAF", - "system": "https://www.genenames.org/" + "transcriptId": { + "value": "805a7f31-9fe1-49ed-915d-d219b71a45cd", + "system": "https://www.ncbi.nlm.nih.gov/refseq" }, - "position": 460 - }, - "fusionPartner3prime": { - "chromosome": "chr19", - "gene": { - "code": "HGNC:3236", - "display": "EGFR", - "system": "https://www.genenames.org/" - }, - "position": 577 - }, - "reportedNumReads": 9 - }, - { - "id": "4705fb0d-d429-47d6-8191-c07d06d16c7a", - "patient": { - "id": "e14bf9b6-7982-4933-a648-cfdea6484f1c", - "type": "Patient" - }, - "localization": [ - { - "code": "regulatory-region", - "display": "Regulatory region", - "system": "dnpm-dip/variant/localization" - } - ], - "fusionPartner5prime": { - "chromosome": "chr19", - "gene": { - "code": "HGNC:25662", - "display": "AAGAB", - "system": "https://www.genenames.org/" - }, - "position": 270 - }, - "fusionPartner3prime": { - "chromosome": "chr5", + "exonId": "6", "gene": { "code": "HGNC:21298", "display": "AACS", "system": "https://www.genenames.org/" }, - "position": 124 + "position": 577, + "strand": "+" }, - "reportedNumReads": 3 + "fusionPartner3prime": { + "transcriptId": { + "value": "2ae47187-95cb-4d8c-95f9-6a914fd928f7", + "system": "https://www.ensembl.org" + }, + "exonId": "3", + "gene": { + "code": "HGNC:391", + "display": "AKT1", + "system": "https://www.genenames.org/" + }, + "position": 286, + "strand": "-" + }, + "effect": "Effect", + "reportedNumReads": 6 }, { - "id": "9df78e1b-5126-4e72-9d3b-09ddc0fc4d0c", + "id": "88b337a8-260a-418f-8030-6ce5cd155882", "patient": { - "id": "e14bf9b6-7982-4933-a648-cfdea6484f1c", + "id": "aca5a971-28be-4089-8128-0036a4fe6f1a", "type": "Patient" }, + "externalIds": [ + { + "value": "32d72312-10c9-42ee-be8b-2e84a91750eb", + "system": "https://cancer.sanger.ac.uk/cosmic" + } + ], "localization": [ { "code": "intronic", @@ -1638,31 +1949,48 @@ } ], "fusionPartner5prime": { - "chromosome": "chr9", + "transcriptId": { + "value": "82fce546-f37e-4091-b403-68a6c1331f32", + "system": "https://www.ensembl.org" + }, + "exonId": "8", "gene": { - "code": "HGNC:25829", - "display": "ABRAXAS1", + "code": "HGNC:1097", + "display": "BRAF", "system": "https://www.genenames.org/" }, - "position": 658 + "position": 215, + "strand": "-" }, "fusionPartner3prime": { - "chromosome": "chr1", + "transcriptId": { + "value": "74784723-528c-463b-965a-7b935ef6b892", + "system": "https://www.ensembl.org" + }, + "exonId": "2", "gene": { - "code": "HGNC:25829", - "display": "ABRAXAS1", + "code": "HGNC:34", + "display": "ABCA4", "system": "https://www.genenames.org/" }, - "position": 805 + "position": 694, + "strand": "-" }, - "reportedNumReads": 7 + "effect": "Effect", + "reportedNumReads": 8 }, { - "id": "60c7636c-7207-4dbd-bf1f-35fba21137b5", + "id": "139e3749-4ce8-4add-aff8-d50edb63a910", "patient": { - "id": "e14bf9b6-7982-4933-a648-cfdea6484f1c", + "id": "aca5a971-28be-4089-8128-0036a4fe6f1a", "type": "Patient" }, + "externalIds": [ + { + "value": "ae45ead3-0e7e-4e7f-9471-80c814cb931b", + "system": "https://cancer.sanger.ac.uk/cosmic" + } + ], "localization": [ { "code": "coding-region", @@ -1670,170 +1998,146 @@ "system": "dnpm-dip/variant/localization" } ], - "fusionPartner5prime": { - "chromosome": "chr11", - "gene": { - "code": "HGNC:3689", - "display": "FGFR2", - "system": "https://www.genenames.org/" - }, - "position": 146 - }, - "fusionPartner3prime": { - "chromosome": "chr13", - "gene": { - "code": "HGNC:886", - "display": "ATRX", - "system": "https://www.genenames.org/" - }, - "position": 521 - }, - "reportedNumReads": 5 - }, - { - "id": "ade9cd16-516a-4725-b803-51402b8913b2", - "patient": { - "id": "e14bf9b6-7982-4933-a648-cfdea6484f1c", - "type": "Patient" - }, - "localization": [ - { - "code": "intergenic", - "display": "Intergenic", - "system": "dnpm-dip/variant/localization" - } - ], - "fusionPartner5prime": { - "chromosome": "chr13", - "gene": { - "code": "HGNC:3689", - "display": "FGFR2", - "system": "https://www.genenames.org/" - }, - "position": 555 - }, - "fusionPartner3prime": { - "chromosome": "chrY", - "gene": { - "code": "HGNC:3690", - "display": "FGFR3", - "system": "https://www.genenames.org/" - }, - "position": 510 - }, - "reportedNumReads": 9 - } - ], - "rnaFusions": [ - { - "id": "1da6ea65-074a-4850-b2a5-d6c014ba34ec", - "patient": { - "id": "e14bf9b6-7982-4933-a648-cfdea6484f1c", - "type": "Patient" - }, - "externalIds": [ - { - "value": "675d80ec-d50b-44ad-8669-a10323550d5a", - "system": "https://cancer.sanger.ac.uk/cosmic" - } - ], - "localization": [ - { - "code": "intergenic", - "display": "Intergenic", - "system": "dnpm-dip/variant/localization" - } - ], "fusionPartner5prime": { "transcriptId": { - "value": "63338877-2207-459b-9700-15bb3794fef4", + "value": "aed32d17-6067-4781-9483-cb0c01a8c183", "system": "https://www.ncbi.nlm.nih.gov/refseq" }, - "exonId": "5", - "gene": { - "code": "HGNC:25829", - "display": "ABRAXAS1", - "system": "https://www.genenames.org/" - }, - "position": 844, - "strand": "-" - }, - "fusionPartner3prime": { - "transcriptId": { - "value": "1f43ad86-86f4-4f7c-bc47-893e8ec15584", - "system": "https://www.ncbi.nlm.nih.gov/refseq" - }, - "exonId": "8", + "exonId": "3", "gene": { "code": "HGNC:25662", "display": "AAGAB", "system": "https://www.genenames.org/" }, - "position": 280, + "position": 122, "strand": "-" }, + "fusionPartner3prime": { + "transcriptId": { + "value": "8f459b0b-86b8-431c-9d86-f2454e2806c6", + "system": "https://www.ensembl.org" + }, + "exonId": "11", + "gene": { + "code": "HGNC:5173", + "display": "HRAS", + "system": "https://www.genenames.org/" + }, + "position": 119, + "strand": "+" + }, "effect": "Effect", - "reportedNumReads": 6 + "reportedNumReads": 8 }, { - "id": "78aaf57f-5e75-47f5-b2ce-284a45f15df3", + "id": "8e6479b8-5870-42a0-8fa2-be8c33e9c19b", "patient": { - "id": "e14bf9b6-7982-4933-a648-cfdea6484f1c", + "id": "aca5a971-28be-4089-8128-0036a4fe6f1a", "type": "Patient" }, "externalIds": [ { - "value": "2ac1b8c8-47ec-4465-86c0-0252c9c77fba", + "value": "d40f6710-9923-4e03-8675-46ea7ebc185a", "system": "https://cancer.sanger.ac.uk/cosmic" } ], "localization": [ { - "code": "coding-region", - "display": "Coding region", + "code": "intergenic", + "display": "Intergenic", "system": "dnpm-dip/variant/localization" } ], "fusionPartner5prime": { "transcriptId": { - "value": "c05b0d75-918a-4cde-8ad3-1e72ed88c04c", - "system": "https://www.ensembl.org" + "value": "958a73f6-3bb0-4491-b916-58cd5a968f35", + "system": "https://www.ncbi.nlm.nih.gov/refseq" }, "exonId": "10", "gene": { - "code": "HGNC:21298", - "display": "AACS", + "code": "HGNC:25662", + "display": "AAGAB", "system": "https://www.genenames.org/" }, - "position": 837, + "position": 86, "strand": "-" }, "fusionPartner3prime": { "transcriptId": { - "value": "4e21b4fc-81fb-4e79-a7a7-cff1c9e428ca", + "value": "ef3d8f99-a777-4350-b825-e2895355cc8d", "system": "https://www.ensembl.org" }, "exonId": "11", "gene": { - "code": "HGNC:3689", - "display": "FGFR2", + "code": "HGNC:1097", + "display": "BRAF", "system": "https://www.genenames.org/" }, - "position": 167, - "strand": "-" + "position": 310, + "strand": "+" }, "effect": "Effect", - "reportedNumReads": 3 + "reportedNumReads": 8 }, { - "id": "85ae18ea-3c4b-4990-a983-4d8cdfbc9987", + "id": "21613593-fe48-4330-9bf8-d986e885353b", "patient": { - "id": "e14bf9b6-7982-4933-a648-cfdea6484f1c", + "id": "aca5a971-28be-4089-8128-0036a4fe6f1a", "type": "Patient" }, "externalIds": [ { - "value": "3eaec2c4-3a36-466c-9462-46bfd9238c27", + "value": "963a8d60-d1d3-4e4a-904e-4727f4d1604d", + "system": "https://cancer.sanger.ac.uk/cosmic" + } + ], + "localization": [ + { + "code": "intronic", + "display": "Intronic", + "system": "dnpm-dip/variant/localization" + } + ], + "fusionPartner5prime": { + "transcriptId": { + "value": "23143510-bf67-489a-9bab-c06809780e7e", + "system": "https://www.ncbi.nlm.nih.gov/refseq" + }, + "exonId": "7", + "gene": { + "code": "HGNC:5173", + "display": "HRAS", + "system": "https://www.genenames.org/" + }, + "position": 107, + "strand": "-" + }, + "fusionPartner3prime": { + "transcriptId": { + "value": "cbcb422a-3201-4b79-893e-95d8c5e75546", + "system": "https://www.ensembl.org" + }, + "exonId": "9", + "gene": { + "code": "HGNC:11998", + "display": "TP53", + "system": "https://www.genenames.org/" + }, + "position": 517, + "strand": "+" + }, + "effect": "Effect", + "reportedNumReads": 7 + }, + { + "id": "ec5cf70d-41cf-4ae6-80c7-f97c762b49bf", + "patient": { + "id": "aca5a971-28be-4089-8128-0036a4fe6f1a", + "type": "Patient" + }, + "externalIds": [ + { + "value": "05989288-3ed9-4a9e-b0e8-d71e6b00e486", "system": "https://cancer.sanger.ac.uk/cosmic" } ], @@ -1846,184 +2150,84 @@ ], "fusionPartner5prime": { "transcriptId": { - "value": "6b4b1249-f90d-4971-85d7-444d39e220eb", + "value": "7b5e30e2-2ad0-43ee-a420-c012525ecdc8", "system": "https://www.ncbi.nlm.nih.gov/refseq" }, - "exonId": "2", - "gene": { - "code": "HGNC:6973", - "display": "MDM2", - "system": "https://www.genenames.org/" - }, - "position": 252, - "strand": "-" - }, - "fusionPartner3prime": { - "transcriptId": { - "value": "67beabf6-e37e-400b-8861-2706e40e63d0", - "system": "https://www.ensembl.org" - }, - "exonId": "6", - "gene": { - "code": "HGNC:3690", - "display": "FGFR3", - "system": "https://www.genenames.org/" - }, - "position": 755, - "strand": "-" - }, - "effect": "Effect", - "reportedNumReads": 3 - }, - { - "id": "33f12136-e588-4fdb-9a00-d54fd045a8ae", - "patient": { - "id": "e14bf9b6-7982-4933-a648-cfdea6484f1c", - "type": "Patient" - }, - "externalIds": [ - { - "value": "f7c89ee5-77fb-40eb-8542-916111cf8b68", - "system": "https://cancer.sanger.ac.uk/cosmic" - } - ], - "localization": [ - { - "code": "intergenic", - "display": "Intergenic", - "system": "dnpm-dip/variant/localization" - } - ], - "fusionPartner5prime": { - "transcriptId": { - "value": "3a84500a-fbdc-4086-b38e-b7e3454a61a7", - "system": "https://www.ncbi.nlm.nih.gov/refseq" - }, - "exonId": "5", - "gene": { - "code": "HGNC:3689", - "display": "FGFR2", - "system": "https://www.genenames.org/" - }, - "position": 902, - "strand": "-" - }, - "fusionPartner3prime": { - "transcriptId": { - "value": "30c64920-c400-407b-93b5-3bbd8ba3f255", - "system": "https://www.ensembl.org" - }, - "exonId": "7", - "gene": { - "code": "HGNC:21298", - "display": "AACS", - "system": "https://www.genenames.org/" - }, - "position": 254, - "strand": "+" - }, - "effect": "Effect", - "reportedNumReads": 3 - }, - { - "id": "f53c79bf-72e0-4e92-a1fe-b91017602828", - "patient": { - "id": "e14bf9b6-7982-4933-a648-cfdea6484f1c", - "type": "Patient" - }, - "externalIds": [ - { - "value": "5b988b8f-54a7-43b7-a001-0feaf31fcfef", - "system": "https://cancer.sanger.ac.uk/cosmic" - } - ], - "localization": [ - { - "code": "regulatory-region", - "display": "Regulatory region", - "system": "dnpm-dip/variant/localization" - } - ], - "fusionPartner5prime": { - "transcriptId": { - "value": "41d8e247-25d3-426b-b3f7-fddf5cdb558c", - "system": "https://www.ensembl.org" - }, - "exonId": "7", + "exonId": "8", "gene": { "code": "HGNC:3236", "display": "EGFR", "system": "https://www.genenames.org/" }, - "position": 376, - "strand": "+" + "position": 768, + "strand": "-" }, "fusionPartner3prime": { "transcriptId": { - "value": "5ec975b9-d2f1-4717-82bd-c7ce4dd2734c", + "value": "7bb8a065-afaa-4f70-850f-3b4df9a62f43", "system": "https://www.ncbi.nlm.nih.gov/refseq" }, - "exonId": "10", + "exonId": "3", "gene": { - "code": "HGNC:1100", - "display": "BRCA1", + "code": "HGNC:9967", + "display": "RET", "system": "https://www.genenames.org/" }, - "position": 356, + "position": 720, "strand": "-" }, "effect": "Effect", "reportedNumReads": 4 }, { - "id": "7a5955a4-c7d4-4fe8-a529-0a0c01b84743", + "id": "b11ccdea-d5ff-4fb0-ba78-4da793e4ffd8", "patient": { - "id": "e14bf9b6-7982-4933-a648-cfdea6484f1c", + "id": "aca5a971-28be-4089-8128-0036a4fe6f1a", "type": "Patient" }, "externalIds": [ { - "value": "032e1ac6-e21f-4311-98a6-ad6a19ee7b35", + "value": "5642d5ed-d3ff-47d4-975d-070414c71c60", "system": "https://cancer.sanger.ac.uk/cosmic" } ], "localization": [ { - "code": "intergenic", - "display": "Intergenic", + "code": "splicing-region", + "display": "splicing region", "system": "dnpm-dip/variant/localization" } ], "fusionPartner5prime": { "transcriptId": { - "value": "6e43eb94-48ca-41e2-a57e-bf964c1d953a", + "value": "04f2a51a-d782-42d2-a313-67e2ea362155", "system": "https://www.ncbi.nlm.nih.gov/refseq" }, - "exonId": "5", + "exonId": "9", "gene": { - "code": "HGNC:391", - "display": "AKT1", + "code": "HGNC:21597", + "display": "ACAD10", "system": "https://www.genenames.org/" }, - "position": 714, + "position": 575, "strand": "-" }, "fusionPartner3prime": { "transcriptId": { - "value": "91fb4eaf-c3da-434b-991b-cbaeee330de2", + "value": "56e704c3-b889-4768-b33a-f0be5cc3ea4d", "system": "https://www.ncbi.nlm.nih.gov/refseq" }, - "exonId": "11", + "exonId": "6", "gene": { - "code": "HGNC:34", - "display": "ABCA4", + "code": "HGNC:18615", + "display": "BRAFP1", "system": "https://www.genenames.org/" }, - "position": 357, + "position": 537, "strand": "-" }, "effect": "Effect", - "reportedNumReads": 4 + "reportedNumReads": 8 } ], "rnaSeqs": [] @@ -2032,148 +2236,78 @@ ], "carePlans": [ { - "id": "01b19e31-f38b-4b69-bb72-01248bb92d11", + "id": "75f515ff-44e9-44ef-8de4-20750f160322", "patient": { - "id": "e14bf9b6-7982-4933-a648-cfdea6484f1c", + "id": "aca5a971-28be-4089-8128-0036a4fe6f1a", "type": "Patient" }, "reason": { - "id": "53155bb3-39f8-4cd9-aa9b-1675165bfdb8", - "display": "Bösartige Neubildung: Tuba uterina [Falloppio]", + "id": "c1731d5e-6cca-4f8e-bca6-de233926106e", + "display": "Bösartige Neubildung: Zentraler Drüsenkörper der Brustdrüse", "type": "MTBDiagnosis" }, - "issuedOn": "2025-05-30", + "issuedOn": "2025-06-24", "geneticCounselingRecommendation": { - "id": "f75d972c-f6be-4be9-bd2a-aeef0d492072", + "id": "708baa95-c6de-4e1d-9e2c-f40dd1d14a32", "patient": { - "id": "e14bf9b6-7982-4933-a648-cfdea6484f1c", + "id": "aca5a971-28be-4089-8128-0036a4fe6f1a", "type": "Patient" }, - "issuedOn": "2025-05-30", + "issuedOn": "2025-06-24", "reason": { - "code": "other", - "display": "Andere", + "code": "self-anamnesis", + "display": "Eigenanamnese", "system": "dnpm-dip/mtb/recommendation/genetic-counseling/reason" } }, "medicationRecommendations": [ { - "id": "8c9e7e7f-daea-4b7b-ad72-6ef6be070f95", + "id": "1db4d8d9-d6c0-48d1-b135-d040403654f9", "patient": { - "id": "e14bf9b6-7982-4933-a648-cfdea6484f1c", + "id": "aca5a971-28be-4089-8128-0036a4fe6f1a", "type": "Patient" }, "reason": { - "id": "53155bb3-39f8-4cd9-aa9b-1675165bfdb8", - "display": "Bösartige Neubildung: Tuba uterina [Falloppio]", + "id": "c1731d5e-6cca-4f8e-bca6-de233926106e", + "display": "Bösartige Neubildung: Zentraler Drüsenkörper der Brustdrüse", "type": "MTBDiagnosis" }, - "issuedOn": "2025-05-30", + "issuedOn": "2025-06-24", "priority": { - "code": "1", - "display": "1", + "code": "4", + "display": "4", "system": "dnpm-dip/recommendation/priority" }, "levelOfEvidence": { "grading": { - "code": "m2A", - "display": "m2A", + "code": "m2B", + "display": "m2B", "system": "dnpm-dip/mtb/level-of-evidence/grading" }, "addendums": [ { - "code": "iv", - "display": "iv", + "code": "R", + "display": "R", "system": "dnpm-dip/mtb/level-of-evidence/addendum" } ], "publications": [ { - "id": "482370142", + "id": "1802087682", "system": "https://pubmed.ncbi.nlm.nih.gov", "type": "Publication" } ] }, "category": { - "code": "HO", - "display": "Hormontherapie", + "code": "SO", + "display": "Sonstiges", "system": "dnpm-dip/mtb/recommendation/systemic-therapy/category" }, "medication": [ { - "code": "L01EX01", - "display": "Sunitinib", - "system": "http://fhir.de/CodeSystem/bfarm/atc", - "version": "2025" - } - ], - "useType": { - "code": "in-label", - "display": "In-label Use", - "system": "dnpm-dip/mtb/recommendation/systemic-therapy/use-type" - }, - "supportingVariants": [ - { - "variant": { - "id": "4705fb0d-d429-47d6-8191-c07d06d16c7a", - "type": "Variant" - }, - "gene": { - "code": "HGNC:25662", - "display": "AAGAB", - "system": "https://www.genenames.org/" - } - } - ] - }, - { - "id": "5adb8293-f9d1-4e65-bdcf-9d4803bd9d1c", - "patient": { - "id": "e14bf9b6-7982-4933-a648-cfdea6484f1c", - "type": "Patient" - }, - "reason": { - "id": "53155bb3-39f8-4cd9-aa9b-1675165bfdb8", - "display": "Bösartige Neubildung: Tuba uterina [Falloppio]", - "type": "MTBDiagnosis" - }, - "issuedOn": "2025-05-30", - "priority": { - "code": "2", - "display": "2", - "system": "dnpm-dip/recommendation/priority" - }, - "levelOfEvidence": { - "grading": { - "code": "m4", - "display": "m4", - "system": "dnpm-dip/mtb/level-of-evidence/grading" - }, - "addendums": [ - { - "code": "iv", - "display": "iv", - "system": "dnpm-dip/mtb/level-of-evidence/addendum" - } - ], - "publications": [ - { - "id": "1987640662", - "system": "https://pubmed.ncbi.nlm.nih.gov", - "type": "Publication" - } - ] - }, - "category": { - "code": "HO", - "display": "Hormontherapie", - "system": "dnpm-dip/mtb/recommendation/systemic-therapy/category" - }, - "medication": [ - { - "code": "L01FX01", - "display": "Edrecolomab", + "code": "L01XX77", + "display": "Adagrasib", "system": "http://fhir.de/CodeSystem/bfarm/atc", "version": "2025" } @@ -2186,12 +2320,12 @@ "supportingVariants": [ { "variant": { - "id": "c6e4a8ca-9fd5-46d6-b9c3-4fb92fa3ad7f", + "id": "a9487572-a2a5-4074-ba8b-1e73cf92b378", "type": "Variant" }, "gene": { - "code": "HGNC:25829", - "display": "ABRAXAS1", + "code": "HGNC:11998", + "display": "TP53", "system": "https://www.genenames.org/" } } @@ -2200,57 +2334,57 @@ ], "procedureRecommendations": [ { - "id": "7c51af31-3e47-467b-aee6-87a6aee9068a", + "id": "1f5aebc0-2f32-4fdf-96e3-ba2309a580e3", "patient": { - "id": "e14bf9b6-7982-4933-a648-cfdea6484f1c", + "id": "aca5a971-28be-4089-8128-0036a4fe6f1a", "type": "Patient" }, "reason": { - "id": "53155bb3-39f8-4cd9-aa9b-1675165bfdb8", - "display": "Bösartige Neubildung: Tuba uterina [Falloppio]", + "id": "c1731d5e-6cca-4f8e-bca6-de233926106e", + "display": "Bösartige Neubildung: Zentraler Drüsenkörper der Brustdrüse", "type": "MTBDiagnosis" }, - "issuedOn": "2025-05-30", + "issuedOn": "2025-06-24", "priority": { - "code": "1", - "display": "1", + "code": "2", + "display": "2", "system": "dnpm-dip/recommendation/priority" }, "levelOfEvidence": { "grading": { - "code": "m1A", - "display": "m1A", + "code": "undefined", + "display": "Nicht definiert", "system": "dnpm-dip/mtb/level-of-evidence/grading" }, "addendums": [ { - "code": "iv", - "display": "iv", + "code": "R", + "display": "R", "system": "dnpm-dip/mtb/level-of-evidence/addendum" } ], "publications": [ { - "id": "45577081", + "id": "519591396", "system": "https://pubmed.ncbi.nlm.nih.gov", "type": "Publication" } ] }, "code": { - "code": "WS", - "display": "Wait and see", + "code": "AS", + "display": "Active Surveillance", "system": "dnpm-dip/mtb/recommendation/procedure/category" }, "supportingVariants": [ { "variant": { - "id": "7748dd2f-e547-4412-996b-c8116040a5d4", + "id": "828dfee4-37e4-485a-8c6f-49f863903f3f", "type": "Variant" }, "gene": { - "code": "HGNC:25829", - "display": "ABRAXAS1", + "code": "HGNC:886", + "display": "ATRX", "system": "https://www.genenames.org/" } } @@ -2259,46 +2393,46 @@ ], "studyEnrollmentRecommendations": [ { - "id": "3d4c243c-2908-46b7-9faf-d795fd883ac0", + "id": "590cd85f-24b9-435c-bb63-8a719dfa7c8e", "patient": { - "id": "e14bf9b6-7982-4933-a648-cfdea6484f1c", + "id": "aca5a971-28be-4089-8128-0036a4fe6f1a", "type": "Patient" }, "reason": { - "id": "53155bb3-39f8-4cd9-aa9b-1675165bfdb8", - "display": "Bösartige Neubildung: Tuba uterina [Falloppio]", + "id": "c1731d5e-6cca-4f8e-bca6-de233926106e", + "display": "Bösartige Neubildung: Zentraler Drüsenkörper der Brustdrüse", "type": "MTBDiagnosis" }, - "issuedOn": "2025-05-30", + "issuedOn": "2025-06-24", "levelOfEvidence": { "grading": { - "code": "m2A", - "display": "m2A", + "code": "m2B", + "display": "m2B", "system": "dnpm-dip/mtb/level-of-evidence/grading" }, "addendums": [ { - "code": "iv", - "display": "iv", + "code": "R", + "display": "R", "system": "dnpm-dip/mtb/level-of-evidence/addendum" } ], "publications": [ { - "id": "482370142", + "id": "1802087682", "system": "https://pubmed.ncbi.nlm.nih.gov", "type": "Publication" } ] }, "priority": { - "code": "4", - "display": "4", + "code": "1", + "display": "1", "system": "dnpm-dip/recommendation/priority" }, "study": [ { - "id": "8547-845744-34-56", + "id": "0509-104679-07-52", "system": "Eudra-CT", "type": "Study" } @@ -2306,12 +2440,12 @@ "supportingVariants": [ { "variant": { - "id": "4705fb0d-d429-47d6-8191-c07d06d16c7a", + "id": "a9487572-a2a5-4074-ba8b-1e73cf92b378", "type": "Variant" }, "gene": { - "code": "HGNC:25662", - "display": "AAGAB", + "code": "HGNC:11998", + "display": "TP53", "system": "https://www.genenames.org/" } } @@ -2320,30 +2454,30 @@ ], "histologyReevaluationRequests": [ { - "id": "a641f201-fa1e-4650-8fba-adf3665040ed", + "id": "38f2133a-f1cf-4af6-b441-c21953e43ed3", "patient": { - "id": "e14bf9b6-7982-4933-a648-cfdea6484f1c", + "id": "aca5a971-28be-4089-8128-0036a4fe6f1a", "type": "Patient" }, "specimen": { - "id": "c59253e3-3c11-40bd-bc35-7c089f734862", + "id": "c3f30fe7-d193-4cde-a3c2-ef8f2497df51", "type": "TumorSpecimen" }, - "issuedOn": "2025-05-30" + "issuedOn": "2025-06-24" } ], "rebiopsyRequests": [ { - "id": "2501cd78-c360-40c1-9ced-455fa7172191", + "id": "0860944d-ede1-453b-b7ea-b13ea0fb1d2f", "patient": { - "id": "e14bf9b6-7982-4933-a648-cfdea6484f1c", + "id": "aca5a971-28be-4089-8128-0036a4fe6f1a", "type": "Patient" }, "tumorEntity": { - "id": "53155bb3-39f8-4cd9-aa9b-1675165bfdb8", + "id": "c1731d5e-6cca-4f8e-bca6-de233926106e", "type": "MTBDiagnosis" }, - "issuedOn": "2025-05-30" + "issuedOn": "2025-06-24" } ], "notes": [ @@ -2353,79 +2487,45 @@ ], "followUps": [ { - "date": "2025-02-07", + "date": "2025-06-03", "patient": { - "id": "e14bf9b6-7982-4933-a648-cfdea6484f1c", + "id": "aca5a971-28be-4089-8128-0036a4fe6f1a", "type": "Patient" }, - "lastContactDate": "2025-02-07" + "lastContactDate": "2025-06-03" } ], "claims": [ { - "id": "4aa57f09-d47a-4916-852e-c79175a0eca7", + "id": "5ec237d4-4857-475a-9931-0aa374a93634", "patient": { - "id": "e14bf9b6-7982-4933-a648-cfdea6484f1c", + "id": "aca5a971-28be-4089-8128-0036a4fe6f1a", "type": "Patient" }, "recommendation": { - "id": "8c9e7e7f-daea-4b7b-ad72-6ef6be070f95", + "id": "1db4d8d9-d6c0-48d1-b135-d040403654f9", "type": "MTBMedicationRecommendation" }, - "issuedOn": "2025-05-30", + "issuedOn": "2025-06-24", "stage": { - "code": "revocation", - "display": "Widerspruch", - "system": "dnpm-dip/mtb/claim/stage" - } - }, - { - "id": "fa9b668c-c39d-42a9-bdb2-410bc3f4a361", - "patient": { - "id": "e14bf9b6-7982-4933-a648-cfdea6484f1c", - "type": "Patient" - }, - "recommendation": { - "id": "5adb8293-f9d1-4e65-bdcf-9d4803bd9d1c", - "type": "MTBMedicationRecommendation" - }, - "issuedOn": "2025-05-30", - "stage": { - "code": "initial-claim", - "display": "Erstantrag", + "code": "unknown", + "display": "Unbekannt", "system": "dnpm-dip/mtb/claim/stage" } } ], "claimResponses": [ { - "id": "db18a72a-293e-4f2d-bfe5-273776f8286b", + "id": "fed8817e-708a-4230-a7e1-95594b67e5ce", "patient": { - "id": "e14bf9b6-7982-4933-a648-cfdea6484f1c", + "id": "aca5a971-28be-4089-8128-0036a4fe6f1a", "type": "Patient" }, "claim": { - "id": "4aa57f09-d47a-4916-852e-c79175a0eca7", + "id": "5ec237d4-4857-475a-9931-0aa374a93634", "type": "Claim" }, - "issuedOn": "2025-05-30", - "status": { - "code": "accepted", - "display": "Angenommen", - "system": "dnpm-dip/mtb/claim-response/status" - } - }, - { - "id": "ff5f495e-20c6-4c18-b150-4799343049c4", - "patient": { - "id": "e14bf9b6-7982-4933-a648-cfdea6484f1c", - "type": "Patient" - }, - "claim": { - "id": "fa9b668c-c39d-42a9-bdb2-410bc3f4a361", - "type": "Claim" - }, - "issuedOn": "2025-05-30", + "issuedOn": "2025-06-24", "status": { "code": "accepted", "display": "Angenommen", @@ -2437,36 +2537,41 @@ { "history": [ { - "id": "bc0b340d-17ea-4598-ad69-38d309e47182", + "id": "0b2347b7-3b85-442d-aa46-e9c5c9ee7802", "patient": { - "id": "e14bf9b6-7982-4933-a648-cfdea6484f1c", + "id": "aca5a971-28be-4089-8128-0036a4fe6f1a", "type": "Patient" }, "reason": { - "id": "53155bb3-39f8-4cd9-aa9b-1675165bfdb8", - "display": "Bösartige Neubildung: Tuba uterina [Falloppio]", + "id": "c1731d5e-6cca-4f8e-bca6-de233926106e", + "display": "Bösartige Neubildung: Zentraler Drüsenkörper der Brustdrüse", "type": "MTBDiagnosis" }, "intent": { - "code": "X", - "display": "Keine Angabe", + "code": "P", + "display": "Palliativ", "system": "dnpm-dip/therapy/intent" }, "category": { - "code": "N", - "display": "Neoadjuvant", + "code": "S", + "display": "Sonstiges", "system": "dnpm-dip/therapy/category" }, "basedOn": { - "id": "8c9e7e7f-daea-4b7b-ad72-6ef6be070f95", + "id": "1db4d8d9-d6c0-48d1-b135-d040403654f9", "type": "MTBMedicationRecommendation" }, - "recordedOn": "2025-05-30", + "recordedOn": "2025-06-24", "status": { - "code": "on-going", - "display": "Laufend", + "code": "stopped", + "display": "Abgebrochen", "system": "dnpm-dip/therapy/status" }, + "statusReason": { + "code": "progression", + "display": "Progression", + "system": "dnpm-dip/therapy/status-reason" + }, "recommendationFulfillmentStatus": { "code": "partial", "display": "Partiell", @@ -2478,74 +2583,13 @@ "system": "dnpm-dip/therapy/dosage-density" }, "period": { - "start": "2024-11-08", - "end": "2025-05-30" + "start": "2025-03-18", + "end": "2025-06-24" }, "medication": [ { - "code": "L01EX01", - "display": "Sunitinib", - "system": "http://fhir.de/CodeSystem/bfarm/atc", - "version": "2025" - } - ], - "notes": [ - "Notes on the therapy..." - ] - } - ] - }, - { - "history": [ - { - "id": "e3d4b435-0531-4d75-827c-0da914f054dd", - "patient": { - "id": "e14bf9b6-7982-4933-a648-cfdea6484f1c", - "type": "Patient" - }, - "reason": { - "id": "53155bb3-39f8-4cd9-aa9b-1675165bfdb8", - "display": "Bösartige Neubildung: Tuba uterina [Falloppio]", - "type": "MTBDiagnosis" - }, - "intent": { - "code": "K", - "display": "Kurativ", - "system": "dnpm-dip/therapy/intent" - }, - "category": { - "code": "A", - "display": "Adjuvant", - "system": "dnpm-dip/therapy/category" - }, - "basedOn": { - "id": "5adb8293-f9d1-4e65-bdcf-9d4803bd9d1c", - "type": "MTBMedicationRecommendation" - }, - "recordedOn": "2025-05-30", - "status": { - "code": "completed", - "display": "Abgeschlossen", - "system": "dnpm-dip/therapy/status" - }, - "recommendationFulfillmentStatus": { - "code": "complete", - "display": "Komplett", - "system": "dnpm-dip/therapy/recommendation-fulfillment-status" - }, - "dosage": { - "code": "over-50%", - "display": ">= 50 %", - "system": "dnpm-dip/therapy/dosage-density" - }, - "period": { - "start": "2024-10-25", - "end": "2025-05-30" - }, - "medication": [ - { - "code": "L01FX01", - "display": "Edrecolomab", + "code": "L01XX77", + "display": "Adagrasib", "system": "http://fhir.de/CodeSystem/bfarm/atc", "version": "2025" } @@ -2559,43 +2603,21 @@ ], "responses": [ { - "id": "1bcd9695-739f-451b-a403-7def6fa43614", + "id": "70c6b774-ca26-4837-b424-5fc37e9a1548", "patient": { - "id": "e14bf9b6-7982-4933-a648-cfdea6484f1c", + "id": "aca5a971-28be-4089-8128-0036a4fe6f1a", "type": "Patient" }, "therapy": { - "id": "bc0b340d-17ea-4598-ad69-38d309e47182", + "id": "0b2347b7-3b85-442d-aa46-e9c5c9ee7802", "type": "MTBSystemicTherapy" }, - "effectiveDate": "2025-02-07", + "effectiveDate": "2025-06-03", "method": { "code": "RANO", "display": "Nach RANO-Kriterien", "system": "dnpm-dip/mtb/response/method" }, - "value": { - "code": "PR", - "display": "Partial Response", - "system": "RECIST" - } - }, - { - "id": "89f6c606-0ec6-4b1e-a316-56a16eb52ea2", - "patient": { - "id": "e14bf9b6-7982-4933-a648-cfdea6484f1c", - "type": "Patient" - }, - "therapy": { - "id": "e3d4b435-0531-4d75-827c-0da914f054dd", - "type": "MTBSystemicTherapy" - }, - "effectiveDate": "2024-12-27", - "method": { - "code": "RECIST", - "display": "Nach RECIST-Kriterien", - "system": "dnpm-dip/mtb/response/method" - }, "value": { "code": "SD", "display": "Stable Disease",