Hi All,
I am planning an OHDSI study on the safety and effectiveness of biologic medicines. “Biologics” encompass the immune-based therapies such as the monoclonal antibodies and fusion proteins (eg ipilimumab, denosumab and etanercept)
I have received reviewers responses to our funding application to do this work and we have been asked to provide estimates of the numbers of biologic medicines used across the OHDSI network. At this stage I only need to provide an estimate of the overall number of biologic scripts/dispensings to demonstrate the potential feasibility of this study. These numbers are only to be included in the response to reviewers and will not be used in a publication. I apologise about the tight timeline but my response is due Monday 10th July.
If you can participate I would be very grateful. The code below can be run against your data to generate the count of biologics across all products.
Kind regards, Nicole
SELECT COUNT(*) AS prescription_count
FROM drug_era
WHERE drug_concept_id IN (735843, 909959, 912263, 936429, 937368, 1110942, 1151789, 1186087, 1312706, 1314273, 1315411, 1387104, 1397141, 19041065, 19047423, 19080458, 19080982, 19100985, 40161532, 40167582, 40171288, 40222444, 40238188, 40241969, 40244266, 42801287, 44507676, 45774639, 45775965, 45892628, 45892883);