GithubHelp home page GithubHelp logo

vanderbilt-redcap / data_quality_api Goto Github PK

View Code? Open in Web Editor NEW
4.0 12.0 4.0 30 KB

Additional API to allow export and import of data quality information from REDCap

License: MIT License

PHP 100.00%
redcap-external-module redcap redcap-repo

data_quality_api's People

Contributors

kcmcg avatar mmcev106 avatar scottjpearson avatar tmwil avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

data_quality_api's Issues

Event ID

Hello everyone,

When I realized the export to data quality via API, the code returns "event_id".

Is there any way to capture a dictionary from event_id to event_name?

Custom rule based data quality resolutions not included in export

We are working on incorporating this module to find outstanding data queries.

If you open a query on a custom rule the query is not included in the export. My suspicion is that the following line in export.php is causing them to be excluded:

-- join to metadata to exclude fields that no longer exist (like REDCap does programmatically)
JOIN redcap_metadata m
	ON m.project_id = $project_id
	AND s.field_name = m.field_name

custom rules do not have a field_name associated with them so will be filtered out. Possibly updating to something like this:

-- join to metadata to exclude fields that no longer exist (like REDCap does programmatically)
JOIN redcap_metadata m
	ON m.project_id = $project_id
	AND (s.field_name is null or s.field_name = m.field_name)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.