Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/bcbi/redcap.jl

Julia wrapper for the REDCap API
https://github.com/bcbi/redcap.jl

clinical-research data-capture electronic-data-capture julia-package redcap redcap-api

Last synced: 19 days ago
JSON representation

Julia wrapper for the REDCap API

Awesome Lists containing this project

README

        

# REDCap.jl
[![](https://img.shields.io/badge/docs-latest-blue.svg)](https://bcbi.github.io/REDCap.jl/)

[REDCap](https://en.wikipedia.org/wiki/REDCap) is a data capture system for scientific research, especially clinical trials.
REDCap.jl is an API wrapper for REDCap v14, written in Julia.

## Examples
```julia
pkg> activate --temp; add REDCap
julia> using REDCap

julia> export_version()

julia> project_token = create_project(
data = (project_title = "Test Project", purpose = 0),
odm = "Data_Dictionary.xml")

julia> import_records(token=project_token, data="example.csv", format=:csv)

julia> delete_records(token=project_token, records=[2,3])

julia> export_logging(token=project_token)
```

For more details, see the internal documentation (`help?> REDCap`).

## Acknowledgments
The contributors are grateful for the support of Mary McGrath, Paul Stey, Fernando Gelin, the Brown Data Science Institute, the Brown Center for Biomedical Informatics, and the Tufts CTSI Informatics team.