{% extends "remapp/base.html" %} {% block confnav %}
  • {# #} Not-patient indicator documentation
  • {% endblock %} {% block mainblock %}

    Not-patient indicators

    Find QA and test studies in your anonymised data by matching against strings with wildcards when the study is imported into OpenREM

    {% if not admin.admingroup %}

    Log in as an administrator to be able to modify the patterns.

    {% endif %}
    {% if admin.admingroup %} Add ID patterns {% endif %}

    ID matching patterns

    {% if ids.count < 1 %}

    Nothing set yet, see below for examples, or to set the patterns to match the 0.7.4 release

    {% endif %} {% for id in ids %} {% endfor %}
    {{ id.not_patient_id }} {% if admin.admingroup %} Delete Modify  {% endif %}
    {% if admin.admingroup %} Add name patterns {% endif %}

    Name matching patterns

    {% if names.count < 1 %}

    Nothing set yet, see below for examples, or to set the patterns to match the 0.7.4 release

    {% endif %} {% for name in names %} {% endfor %}
    {{ name.not_patient_name }} {% if admin.admingroup %} Delete Modify  {% endif %}

    On import, the patient name and patient ID are compared to the matching patterns in this list. The name and ID are compared in lower-case and make use of wildcards. If any of the patterns match the patient name or ID, then the following things happen:

    For example:

    ID matching pattern *ph*
    Name matching pattern *QA*
    Study patient ID PPH23148236
    Study patient name Srour^Saraqa
    Resultant not-patient indicator recorded: IDs: *ph* | Names: *qa*

    How to use the wildcards:

    PatternMeaning
    *matches everything
    ?matches any single character
    [seq]matches any character in seq
    [!seq]matches any character not in seq

    Warning!

    • The pattern you use to indicate test studies might match real patient names/IDs
    • Any strings in the list below will be displayed in the interface and exports, so don't include real names in this list!
    • Names and IDs are matched on import - changes made here will not affect any of the studies already in the database.

    Replicating behaviour of release 0.7.4 and earlier

    {% if not admin.admingroup %}

    This is only applicable to users in the 'admingroup'

    {% endif %} {% if admin.admingroup %}

    OpenREM releases before 0.8 had the not-patient identification patterns hard-coded. From release 0.8.0 the patterns are (admin) user configurable, but will start with no patterns in place. To add the patterns that would maintain the behaviour of previous releases, click here.

    {% endif %}
    {% endblock %}