Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 998 Bytes

README.md

File metadata and controls

28 lines (19 loc) · 998 Bytes

REDCap.jl

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

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.