Subscribe to our blog

Your email:

Clinical Architecture Healthcare IT Blog

Current Articles | RSS Feed RSS Feed

Problem Lists: The Cacophony of Concatenation

  | Submit to Digg digg it |  Add to delicious  delicious |  Submit to StumbleUpon StumbleUpon | Submit to Reddit reddit 

I have spent some time recently looking into terminologies that are used to represent problem lists.  Specifically the terminologies in question are the current de facto standard ICD-9, its successor ICD-10CM and the big Kahuna SNOMED-CT.

This is a good time to be looking at these, as the healthcare IT industry is starting to evolve electronic patient records (regardless of what acronym you use for it) to be a more useful and accurate picture of the patient's state.  Until recently the patient's problems were (a) not represented in their electronic records, (b) represented using a home grown code that, aside from providing a display name, provided little support for leveragable decision support or (c) represented using an ICD-9CM code.

As I reviewed these terminologies, I ran across something that concerned me.  The concern is with regard to concatenated terms in these terminologies.

What is a Concatenated Term?

A concatenated or combination term is a term that is, in actuality, multiple terms combined together under a single concept identifier.

Here is an example in ICD9CM:

404 - Hypertensive heart and chronic kidney disease

As opposed to the individual single terms:

402 - Hypertensive heart disease

585 - Chronic kidney disease (CKD)

In some cases it can be even more interesting:

404.00 - Hypertensive heart and chronic kidney disease, malignant, without mention of heart failure and with chronic kidney disease stage I through stage IV, or unspecified

When I saw this in the ICD9CM, I assumed it was a legacy issue and existed because ICD9CM has been around for awhile.  So I looked in ICD10-CM...

I132 - Hypertensive heart and chronic kidney disease with heart failure and with stage V chronic kidney disease, or end stage renal disease

And then I looked at SNOMED-CT...

194779001 - Hypertensive heart and renal disease with (congestive) heart failure

So, as it turns out, it is still an ongoing practice to create concatenated terms.  This is not a legacy thing, or it is a legacy thing that has found its way into the terminologies we are supposed to use as we move forward.

I want to stop at this point and remind the reader that I am not a clinical person.  I am a simple country programmer and guerilla informaticist.  So there might be a reason for this I am not seeing.  If there is, I want to know and I will post it here as a follow up.

Here is what was said on the American Health Insurance Management Association (AHIMA) website in an article about ICD10-CM enhancements regarding combination codes.

"ICD-10-CM includes combination codes for conditions and common symptoms or manifestations. A single code may be used to classify two diagnoses, a diagnosis with an associated sign or symptom, or a diagnosis with an associated complication. This allows one code to be assigned, resulting in fewer cases requiring more than one code and reducing sequencing problems.

Coding professionals have encountered sequencing dilemmas when coding conditions such as unstable angina with arteriosclerotic heart disease or diabetes mellitus with a complication/manifestation such as diabetic nephropathy. Manifestation/etiology conditions require two codes with sequencing mandated by ICD-9-CM. Brackets in the index identified that the etiology (diabetes mellitus) code was sequenced before the manifestation (diabetic nephropathy).

In cases when ICD-9-CM did not indicate correct sequencing, coding was not clear-cut, and Coding Clinic advice was needed to sequence conditions appropriately. The ICD-10-CM use of combination codes has greatly simplified this process."

My concern is how we are using terminology and the compromises we need to make to drive a specific purpose. 

In the case of patient problem terminologies, it can boil down to:

(a) Are we trying to solve a sequencing problem to support re-imbursement?

or

(b) Are we trying to allow the computer to assist with the heavy lifting by providing terms that can drive decision support?

Concatenated terms can assist with providing a refined display, with a single click of the patient's complex problem and, apparently, assist with sequencing for coding purposes.  However, this can come at the expense of accurate and fast decision support.

Why do I say this?

When you create a decision support rule in healthcare, very often the rule fires based on the juxtaposition of elements of the patients clinical context.  For example, a drug-drug interaction is an overlap of two drugs that are currently, or about to be, prescribed on a patient's medical record.  Similarly, a contraindication is the overlap of a medication and a patient problem that is known to create a patient safety risk.

By way of example, let's take a fictional medication ‘Nancycillin' and say that it is absolutely contraindicated in patients with Hypertensive heart disease.  If we use ICD9CM, in order to support that rule in our engine, we may setup the following rule:

Nancycillin [is absolutely contraindicated in patients with] (402) Hypertensive heart disease

If I set the above simple rule and the patient has the following in their EMR

Fred Flintstone

Problems:

  • Hypertensive Heart Disease (402)
  • Hypertensive renal disease, unspecified (403.9)
  • Renal Failure (586)

The rule would fire just fine.

However, If I had added instead: 

  • Hypertensive heart and renal disease, unspecified, with renal failure (404.92)

The rule would not fire and my patient might have a problem.

To handle the concatenated term we need to setup a collection of rules to cover the potential concatenated terms as follows:

Nancycillin [is absolutely contraindicated in patients with] ...

CODE

Term Description

404.1

Hypertensive heart and renal disease, benign

404.11

Hypertensive heart and renal disease, benign, with heart failure

404.13

Hypertensive heart and renal disease, benign, with heart failure and renal failure

404.12

Hypertensive heart and renal disease, benign, with renal failure

404.10

Hypertensive heart and renal disease, benign, without mention of heart failure or renal failure

404.9

Hypertensive heart and renal disease, unspecified

404.91

Hypertensive heart and renal disease, unspecified, with heart failure

404.93

Hypertensive heart and renal disease, unspecified, with heart failure and renal failure

404.92

Hypertensive heart and renal disease, unspecified, with renal failure

404.90

Hypertensive heart and renal disease, unspecified, without mention of heart failure or renal failure

402

Hypertensive heart disease

This is a potential issue, as the people setting up rules are not always in control of the terminology and I would imagine that next week a new concatenated term with ‘hypertensive heart disease' could be added to the terminology and there would still be a terminological gap.

Relationships to the rescue? 

This is a problem in ICD9-CM and ICD10-CM, what about SNOMED-CT?  SNOMED-CT, as I mentioned, has concatenated terms, but it also has something else... relationships.  Can the relationships in SNOMED-CT bridge this issue?

In the SNOMED-CT relationships table, if you use a concatenated term there is a way to break it into its antecedents through the relationships table using the 'is a' relationship type.

Let's take our SNOMED-CT example of:

Hypertensive heart and renal disease with (congestive) heart failure

It has the following related terms in the SNOMED_CT Relationships Table:

concat_rel1

It breaks down the term into parent terms using the ‘Is a' relationship type.  But if you look at the second one, you see that it is also a concatenated term.  When we break that one down we get the following:

concat_rel2

It is worth noting that each of these terms also breaks down (or breaks UP) to a parent or parents.  Using the relationship structure when I am done the term ‘Hypertensive heart and renal disease with (congestive) heart failure' results in 72 ‘Is a' antecedents (click here for the full list).

In order to accurately process my rules using the relationship table, I need to traverse the SNOMED-CT relationships across 72 antecedents, for this one term alone.  Keep in mind, this has to be done for every term because I have no way of knowing which terms are concatenated and which ones are single.

So what's missing?

In order to deal with the issues, there are a few things that would come in handy.

Concatenated Term Indicatorconcat indicator

A flag on a term that indicates that it is comprised of more than a single concept would provide the savvy terminology consumer with the ability to apply special processing or avoid concatenated terms altogether.

Concatenated Term to Components RelationshipConcat relationships

If these terminologies provided relationships to their component terms that would be even better.  This would not be like the ‘is a' relationships in SNOMED-CT.  The ‘Is a' relationship is an ontological relationship that relates concepts into the conceptual framework of SNOMED-CT.  This would be a compositional link relating a concatenated term to the single conceptual terms that, when combined, are the conceptual equal of the concatenated term.  In this relationship structure a concatenated term would never link to another concatenated term.

As an added bonus, if this type of relationship is created it can serve to identify which terms are concatenated. 

This could be done within the existing SNOMED-CT structure by creating a new relationahip type like the 'is a' relationship but based purely on compositional relationships.

If this type of information was available, it could be used when processing clinical decision support to automatically include all concatenated terms that the included term is a component of. 

I am not suggesting this is a simple thing to do, especially when you have terms like the following:

Hypertensive heart and chronic kidney disease, malignant, without mention of heart failure and with chronic kidney disease stage I through stage IV, or unspecified

What I am suggesting is that in order to create targeted, effective clinical decision support there has to be an effective strategy to deal with concatenated terms.  Without that you place a significant burden on the content authors to accurately cover related concatenated terms with a specific rule.  If you decide to rely on the ontological relationships, in the case of SNOMED-CT, you run the risk of generating significant noise as it can't tell where to stop.

My suggestion, in the short term, for those of you looking into using ICD-9, ICD10 CM or SNOMED-CT to drive diagnosis, problem or procedure codes is to create policies that avoid adding concatenated terms into the subset you are providing to users for selection.  This will help you to avoid the problem and prepare your application for a easier road when, in the future, you begin to try to use those codes to drive clinical decision support.

Comments

Just stumbled across this post and I thought I'd add my 2 cents: 
I understand the dilemma here, however you cannot restrict the users from selecting the concatenated terms. Most of the time the simple terms will not be paid for since they are not "specific" enough. You need a fifth digit in ICD9, if it exists and at least a fourth one. 
Asking the users to use one ICD9 for the clinical documentation and another for the billing portion is not a good solution and may cause all sorts of problems. 
I'm afraid there is no way around setting the problem list groups manually at this time.
Posted @ Thursday, October 01, 2009 5:35 PM by Margalit Gur-Arie
Margalit, 
 
First, thank you for the feedback. I have read several of your blog entries (which I think are very good BTW) and have a great deal of respect for your perspective and insight on this topic.  
 
My ultimate question is this: what is the purpose of the electronic medical record?  
 
If the answer is to streamline and maximize the re-imbursement process, then I could agree with you.  
 
If the answer is “to create an accurate, leverage-able record of the patient’s state”, then I would argue with you for the following reasons: 
 
As we push the cataloging of patient information closer and closer to the point of care, we need to provide those users with vocabularies that are appropriate to the purpose they are meant to fulfill. A system that expects the physician to be an ICD9 coder is not a very good system. I might even go so far as to say that the expectation that a physician, nurse or other primary care provider needs to think like a pharmacist or ICD9 coder is part of why so many implementations fail. 
 
As we try to leverage the content of the electronic medical record to intercept potential adverse events or do population analysis, anomalies, like concatenated terms, inject risk into the equation by creating a measure of uncertainty. This uncertainty undermines the one of the reasons one establishes an EMR in the first place, to provide a structured medical record that can be used to do some of the heavy lifting. 
 
Now, I am saying all this as a person who has spent much of his time in the clinical decision support world. Of course my answer is, that the clinical system should not compromise to support the reimbursement environment, the reimbursement environment should adapt to support our need for better clinical systems. (Not unlike the old beer commercial with “Tastes Great! Less Filling” argument)  
 
I realize however that the reality lies somewhere in between. That in order to sell a system part of the value is that it will help the physician be compensated appropriately for the services they provide. 
 
Since there is a big push to use SNOMED-CT to codify patient problems and a requirement to use ICD9 (and later ICD10) to file for reimbursement, what about the following… 
 
1.) Remove concatenated terms from SNOMED-CT (or flag them so they can be filtered). 
 
2.) Create maps that relate singleton SNOMED-CT term that are present to their appropriately ordered ICD9/ICD10 terms. 
 
3.) Allow the EMR to be built using the SNOMED-CT singleton terms and relate them through the map to the “best fit” ICD9/ICD10 terms. 
 
4.) Use the SNOMED-CT terms for clinical decision support and clinical analytics 
 
5.) Use the resultant ICD9/ICD10 terms for billing. 
 
What do you think? In your comment you ended it with the following sentence: “I'm afraid there is no way around setting the problem list groups manually at this time.”  
 
I realize that this is not necessarily something that would happen tomorrow. My concern is, driven by the need to comply with meaningful use; many vendors are scrambling to adopt a structured and coded electronic medical record. These systems will be how we as an industry start persisting patient data for go forward use in RHIOs, Health Information Exchanges, etc… Now is the time to start thinking about how we can effect positive change to make the view worth the climb. You said it yourself “What if we start at the end? What if we define the holy grail of what HIT technologies are supposed to be? What if we identify the goals, agree that they are worthy, and only then build the IT tools to get us there.” 
 
I am very interested in your thoughts on this and would be delighted to have a conversation about this and other topics. 
 
Charlie 
 
Posted @ Thursday, October 01, 2009 7:10 PM by Charles Harp
Charlie, 
Thanks for reading my stuff. 
 
I do agree with you that the clinical documentation should not be made subservient to the billing needs, and your suggestion above is probably a very good way to clean up the resulting confusion. I was just describing the unfortunate situation we are in, not justifying it one bit. It would be great to affect change but, I wouldn't know where to start. There is no real standards body in this industry and there is no cooperation in the market. It seems that things just happen with no particular forethought and everything now is being rushed for no good reason. 
 
The name of your company is exactly what is missing in our industry.  
I'm sure we could talk forever about these things :-) I would like that....
Posted @ Wednesday, October 07, 2009 4:48 PM by Margalit Gur-Arie
Comments have been closed for this article.