Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/bcbi/redcap.jl
- Owner: bcbi
- License: other
- Created: 2018-06-03T03:07:20.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-11-05T13:23:14.000Z (about 2 months ago)
- Last Synced: 2024-11-05T14:26:21.799Z (about 2 months ago)
- Topics: clinical-research, data-capture, electronic-data-capture, julia-package, redcap, redcap-api
- Language: Julia
- Homepage:
- Size: 1.01 MB
- Stars: 5
- Watchers: 9
- Forks: 3
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
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 REDCapjulia> 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.