Release notes¶
0.0.8 10 Oktober 2024
Bugfixes - Fixed a bug which prevented to request all subjects. You can now get all subjects by
sending an empty list in the request body:
{"subject_ids": None}.
0.0.7¶
9 Oktober 2024
Features
- The /query-standard-features now supports specifying the ``subject_id``s for which
the standard features should be queried. This can be done by supplying a list of ids in the request body:
{"subject_ids": [1, 2, 3]}.
Bugfixes
- Downgraded numpy to version 1.26.4 as the latest version was causing issues with
the
pandaslibrary.
0.0.6¶
8 Oktober 2024
Updated the
standard_features.sqlto compute thesurvvariable. This is the survival time in days from the first observation to the end of the observation period or the death date. In case a death date is registered the censoring status is set to 1, otherwise 0.Fixed the
cohort_idfilter in thestandard_features.sqlquery. This was previously not working correctly.
0.0.5¶
Added the
OMOP_RESULT_SCHEMAenvironment variable to theOHDSITaskclass. This can be used to specify the schema where for example the cohorts are stored.Added the
/all-patients-cohortsand/all-patients-cohorts/<cohort_id>endpoints to manage the allPatients cohort which can be used to retrieve data from all patients. In this case users are not able to supply their own OHDSI cohort definitions.Added the
/query-standard-featuresand/query-standard-feature/<string:id_>endpoints to query the standard features that are available in the OMOP CDM. Note that this endpoint returns a single record per patient by selecting the first observation.
0.0.4¶
5 December 2023
The endpoints
/celeryand/countnow have settable schema’s. These should be defined in the environment variableOMOP_CDM_SCHEMA. There is no default, so make sure to specify this in the environment file.
0.0.3¶
30 November 2023
Added
/versionendpoint to return the version of the application.Added the celery backend status to the
/healthendpoint.Minor stability improvements.
0.0.2¶
16 November 2023
Added
/errorendpoint to test error handling.Added
/countendpoint to count the number of observations in the person table. This uses a direct SQL connection (not using celery).Added
/celery,/result/<task_id>endpoints. This allows testing the celery workflow.
0.0.1¶
01 November 2023
First release, only contains the
/healthendpoint.