Stream: genomics
Topic: genomics DiagnosticReport/Observation with a little text
Andrew Patterson (May 23 2018 at 02:31):
This might be a more general OO question - but it is in a genomic context so will ask here. We are generating a DiagnosticReport for a genomics sequencing test with an Observation per reportable Variant. However we have two places where the user in the software (not our software, software we are wrapping) can enter some free text notes about the overall report, and each variant. We can't work out where these small snippets of text should go? We could throw the text into the overall narrative but then it would only be available if the downstream users are consuming the whole narrative - and not if they are consuming the observation as computable content. Can we make a component of the Observation with our own custom code and a valueString value - and have it hold some text? And what then about the text that represents an overall impression of all the variants (this might only be a paragraph or two) - where in DiagnosticReport should that go? Thanks
Grahame Grieve (May 23 2018 at 02:41):
DiagnosticReport.conclusion
Andrew Patterson (May 23 2018 at 02:48):
I don't know why I didn't see that.. and for the per variant (represented as contained observations in the DiagnosticReport) - we actually 3 snippets of free text (a variant findings, recommendations and remarks) - a component for each with type valueString?
Andrew Patterson (May 23 2018 at 02:49):
Actually sorry I've got that the wrong way around (which is why we didn't use conclusion)
Andrew Patterson (May 23 2018 at 02:50):
So the overall DiagnosticReport has 3 free text bits - findings, recommendations and remarks.. which I guess we could concat together into the conclusion but don't really know how the downstream users might want to consume (they may want one at the top, and one at the bottom).
Grahame Grieve (May 23 2018 at 02:50):
@Lloyd McKenzie for more comment. I'm not sure about the components, but I expect it's been discussed
Andrew Patterson (May 23 2018 at 02:50):
Each individual variant Observation has a single piece of free text
Grahame Grieve (May 23 2018 at 03:02):
its' not Observation.interpretation?
Andrew Patterson (May 23 2018 at 03:10):
Its narrative text not really a codeable concept like interpretation
Lloyd McKenzie (May 23 2018 at 03:16):
There's Observation.comment to capture ad-hoc notes about the Variant and other observations. In terms of breaking findings and recommendations out as distinct pieces from conclusion, @Eric Haas, is this something OO has discussed before?
Andrew Patterson (May 23 2018 at 03:18):
I don't understand why I keep missing these very obvious fields - I swear I do actually look at the resource definitions before asking.
Andrew Patterson (May 23 2018 at 03:19):
My best guess at the moment for overall DiagnosticReport distinct pieces of text problem is a single observation for each text piece with custom codes, or a single observation for all of them, with a component each (and custom codes)
Andrew Patterson (May 23 2018 at 03:19):
Thanks all
Andrew Patterson (May 23 2018 at 03:22):
To give some slightly more context - this is the in between report - so going from the genomics system back to the lab - at which point the clinical staff will be writing up a full proper report (with conclusions etc). Which is why I really need to keep them separate as each lab can have their own rules for how the proper report is constructed without losing any detail
Eric Haas (May 23 2018 at 03:35):
nope
Last updated: Apr 12 2022 at 19:14 UTC