Skip to main content

Base classes for CRFs in clinicedc/edc projects

Project description

pypi actions codecov downloads

edc_crf

In longitudinal clinical trials, CRFs (case report forms) are the most common data collection forms required in the data collection schedule.

In addition to the logic checks that you will add for a specfic CRF, you also need to validate a few general conditions. Most of these conditions are checked relative to the report_datetime of the CRF data being submitted. Some examples are:

  • that a participant is consented and that their consent is still valid on the report_datetime;

  • that the CRF report_datetime makes sense relative to the covering visit report report_datetime;

  • that the participant is enrolled to the schedule (onschedule) on or after the report_datetime and has not been taken off the schedule (offschedule) on or before the report_datetime;

  • that the participant has not been taken off study on or before the report_datetime.

CRF forms

The CrfModelFormMixin is used for all CRF modelforms. With this single mixin the form:

  • Checks for the consent relative to report datetime and this schedule (edc_consent);

  • checks if participant is on/off schedule relative to report datetime and this schedule (edc_visit_schedule);

  • validates subject_visit report datetime (edc_visit_tracking);

  • checks if participant is offstudy relative to report datetime (edc_offstudy).

If any of the above conditions fail, a forms.ValidationError is raised.

The mixin imports mixins functionality from edc_consent, edc_visit_schedule, edc_visit_tracking, and edc_offstudy.

from django import forms
from edc_crf.modelform_mixins import CrfModelFormMixin
from edc_form_validators import FormValidator

from ..models import FollowupVitals


class MyCrfFormValidator(FormValidator):
    pass


class MyCrfForm(CrfModelFormMixin, forms.ModelForm):

    form_validator_cls = MyCrfFormValidator

    class Meta:
        model = MyCrf
        fields = "__all__"

CRF models

Similar to the CrfModelFormMixin, the CrfModelMixin is used for all CRF models and checks for the same conditions. However, if any of the conditions is met, an exception is raised. You should render CRF models with a modelform class using the CRFModelFormMixin to catch these exceptions on the form where the user can respond.

class MyCrf(CrfModelMixin, BaseUuidModel):

    weight_determination = models.CharField(
        verbose_name="Is weight estimated or measured?",
        max_length=15,
        choices=WEIGHT_DETERMINATION,
    )

    class Meta(CrfModelMixin.Meta, BaseUuidModel.Meta):
        verbose_name = "My CRF"
        verbose_name_plural = "My CRFs"

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

edc-crf-0.3.72.tar.gz (42.9 kB view details)

Uploaded Source

Built Distribution

edc_crf-0.3.72-py3-none-any.whl (51.3 kB view details)

Uploaded Python 3

File details

Details for the file edc-crf-0.3.72.tar.gz.

File metadata

  • Download URL: edc-crf-0.3.72.tar.gz
  • Upload date:
  • Size: 42.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.2

File hashes

Hashes for edc-crf-0.3.72.tar.gz
Algorithm Hash digest
SHA256 6c9601b45d7ef52e33a779ffae809736c63f0dfe787f38ef41714bdfa9afadce
MD5 f9dda13bf7fdf31aa406efb1b3c4c4c9
BLAKE2b-256 15b2a159aea4fa15c8d776d1f7f5aa54ddd153ebf7a15a42b96f17dcf7011fb5

See more details on using hashes here.

File details

Details for the file edc_crf-0.3.72-py3-none-any.whl.

File metadata

  • Download URL: edc_crf-0.3.72-py3-none-any.whl
  • Upload date:
  • Size: 51.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.2

File hashes

Hashes for edc_crf-0.3.72-py3-none-any.whl
Algorithm Hash digest
SHA256 d8641513dc7aa6e267e5922afeee30018bdbe54dbca31f79bc4c1e3d35ff8611
MD5 86b65e9f116961ecffb73be47db795b3
BLAKE2b-256 626b26b03ffd0ed19defe8f3a20fd2d4c35ede367758e693dce8504c1c114a02

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page