Skip to content

Commit

Permalink
Add base mock rapid report
Browse files Browse the repository at this point in the history
  • Loading branch information
Nithriel committed Oct 16, 2023
1 parent 66a8ea7 commit f16696c
Showing 1 changed file with 219 additions and 0 deletions.
219 changes: 219 additions & 0 deletions test/testData/mockRapidReportData.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,219 @@
{
"template": "rapid",
"patientId": "UPLOADPAT01",
"project": "TEST",
"kbMatches": [
{
"category": "therapeutic",
"variantType": "cnv",
"variant": "TA",
"iprEvidenceLevel": "IPR-A",
"kbVariant": "this should be in table 1",
"matchedCancer": true,
"evidenceLevel": "table 1"
},
{
"category": "therapeutic",
"variantType": "cnv",
"variant": "TA",
"iprEvidenceLevel": "IPR-B",
"kbVariant": "thisshouldbeintable1",
"matchedCancer": true,
"evidenceLevel": "table 1"
},
{
"category": "unknown",
"variantType": "cnv",
"variant": "TA",
"iprEvidenceLevel": "IPR-A",
"kbVariant": "geneX specific mutation 1",
"evidenceLevel": "table null"
},
{
"category": "unknown",
"variantType": "cnv",
"variant": "CR",
"iprEvidenceLevel": "IPR-A",
"kbVariant": "this.should.be:table2",
"evidenceLevel": "table 2"
},
{
"category": "unknown",
"variantType": "msi",
"variant": "msi",
"iprEvidenceLevel": "IPR-A",
"kbVariant": "also should be table 2",
"evidenceLevel": "table 2"
},
{
"category": "unknown",
"variantType": "tmb",
"variant": "tmb",
"iprEvidenceLevel": "IPR-A",
"kbVariant": "geneX specific mutation 2",
"evidenceLevel": "table 2"
},
{
"category": "therapeutic",
"variantType": "cnv",
"variant": "CR",
"iprEvidenceLevel": "IPR-C",
"kbVariant": "table2 specific mutation",
"evidenceLevel": "table 2"
},
{
"category": "unknown",
"variantType": "cnv",
"variant": "CR",
"iprEvidenceLevel": "IPR-C",
"kbVariant": "geneX specific mutation 3",
"evidenceLevel": "table 2"
},
{
"category": "unknown",
"variantType": "cnv",
"variant": "CR",
"iprEvidenceLevel": null,
"kbVariant": "geneX specific mutation 4",
"evidenceLevel": "table 2"
},
{
"category": "therapeutic",
"variantType": "cnv",
"variant": "CR",
"iprEvidenceLevel": null,
"kbVariant": "geneX specific mutation 5",
"evidenceLevel": "table 2"
},
{
"category": "therapeutic",
"variantType": "cnv",
"variant": "CR",
"iprEvidenceLevel": "IPR-A",
"kbVariant": "geneX specific mutation 6",
"matchedCancer": false,
"evidenceLevel": "table 2"
},
{
"category": "therapeutic",
"variantType": "exp",
"variant": "alltrueexp",
"iprEvidenceLevel": "IPR-A",
"kbVariant": "geneX specific mutation 7",
"matchedCancer": true,
"evidenceLevel": "table null"
},
{
"category": "therapeutic",
"variantType": "mut",
"variant": "tageneric",
"iprEvidenceLevel": "IPR-A",
"kbVariant": "geneX missense",
"matchedCancer": true,
"evidenceLevel": "table 3"
},
{
"category": "therapeutic",
"variantType": "mut",
"variant": "crgeneric",
"iprEvidenceLevel": "IPR-C",
"kbVariant": "geneX mutation",
"evidenceLevel": "table 3"
}
],
"genes": [
{
"name": "oncogene",
"oncogene": true,
"tumourSuppressor": false
},
{
"name": "tumoursupressor",
"oncogene": false,
"tumourSuppressor": true
},
{
"name": "alltrue",
"oncogene": true,
"tumourSuppressor": true
},
{
"name": "allfalse",
"oncogene": false,
"tumourSuppressor": false
},
{
"name": "table1CV"
},
{
"name": "table2CV"
}
],
"smallMutations": [
{
"gene": "alltrue",
"key": "tageneric",
"displayName": "table 3"
},
{
"gene": "alltrue",
"key": "crgeneric",
"displayName": "table 3"
},
{
"gene": "oncogene",
"key": "usoncogene",
"displayName": "table 3"
},
{
"gene": "tumoursupressor",
"key": "ustumoursupressor",
"displayName": "table 3"
},
{
"gene": "alltrue",
"key": "usalltrue",
"displayName": "table 3"
},
{
"gene": "allfalse",
"key": "usallfalse",
"displayName": "table null"
}
],
"copyVariants": [
{
"gene": "table1CV",
"key": "TA",
"displayName": "table 1"
},
{
"gene": "table2CV",
"key": "CR",
"displayName": "table 2"
}
],
"expressionVariants": [
{
"gene": "allfalse",
"key": "alltrueexp",
"displayName": "table null"
}
],
"tmburMutationBurden": {
"key": "tmb",
"displayName": "table 2"
},
"msi": [
{
"score": 100,
"key": "msi",
"displayName": "table 2"
},
{
"score": 15,
"key": "mss",
"displayName": "table null"
}
]
}

0 comments on commit f16696c

Please sign in to comment.