-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Drug mapping for co-fluampicil #55
Comments
Hi Peter, Not yet, but nice addition! I didn’t know the combination. Will be added shortly! |
Hi Peter, I see on the WHOCC website https://www.whocc.no/ddd/list_of_ddds_combined_products/: As you can see, J01CR50 is 'misused' for many different combinations with ampicillin and amoxicillin. On the WHOCC specific J01CR50-page, it also seems very generic: So I'm not sure what to do with it. I cannot add J01CR50 to more than one row in the Do you think that this ATC code is a kind of temporary placeholder? If I look at the other J01CR* codes, J01CR50 is clearly an exception... |
Hi Matthijs, One consideration you may well already have given thought to: I guess there are other hotchpotch codes, such as J01CA51 ampicillin, combinations and J01CE30 combinations, and the latter has a DDD for benzylpenicillin/procain/benzathine combos. I also looked at changes planned for 2023 and the WHO collaborating centre is not showing signs of reforming J01CR50 yet at this stage. I'm must confess I am not sufficiently knowledgeable about the editorial policy of ATC to understand the implications here. I'll think about it some more over coming days! |
Also I should add co-fluampicil seems to be a very exotic medicine to give - I've worked extensively with two large hospitals for years and I only just recently stumbled across a couple of lonely medication orders for those. |
Today I implemented a function to add custom antimicrobial agents, using This allows to add a code, name and any property you like, e.g. for co-fluampicil: # doesn’t work - code does not exist
as.ab("COFLU")
#> Class <ab>
#> [1] NA
# add a custom code
add_custom_antimicrobials(
data.frame(ab = "COFLU",
name = "Co-fluampicil",
atc = "J01CR50")
)
# now works
as.ab("COFLU")
#> Class <ab>
#> [1] COFLU
as.ab("J01CR50")
#> Class <ab>
#> [1] COFLU
ab_name("J01CR50")
#> [1] "Co-fluampicil"
ab_atc("Co-fluampicil")
#> [1] "J01CR50" I think this is pretty close to what we ideally can get to support custom AB codes/names. What do you think? Any feedback appreciated, also if you don’t like it :) |
Hi Matthijs,
Thanks for the update, this looks like an elegant solution. I’ve set some time aside this week to take a deeper look will get back to you!
Best wishes
Peter
|
Hi Matthijs, |
Perfect! |
Hello
Have you considered mapping co-fluampicil (flucloxacillin + ampicillin) J01CR50?
Apologies in advance if this has already been considered.
Best wishes
Peter
The text was updated successfully, but these errors were encountered: