This repository has been archived by the owner on Oct 12, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
131 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
.coverage | ||
cover/ | ||
coverage.xml | ||
nosetests.xml | ||
*.eggs | ||
venv/ | ||
*.pyc | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
"STUDY_ID","NAME","LOINC_CODE","RESULT","REFERENCE_UNIT","DATE_TIME_STAMP" | ||
"001","payment_status","1234","UNABLE TO PAY","","2016-03-01" | ||
"001","payment_status","1234","ABLE TO PAY","","2016-03-02" | ||
"001","preferred_dinner","5678","turkey, no gravy","2016-05-01" | ||
"001","drink","5679","Tab","2016-05-01" | ||
"001","preferred_dinner","5678","full rack of ribs, onion rings","2016-05-02" | ||
"001","drink","5679","sweet tea, extra sugar","2016-05-02" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# Write a script to generate this file, along the lines of | ||
# `grep -r -i "TODO" . >> TODO.md` but something to eliminate duplicates. | ||
|
||
./redi.py: # TODO: add `a` switch to redi to tell it to keep all data points from the input file. | ||
./batch.py: # TODO: refactor code to use ConfigParser.RawConfigParser in order to | ||
./redi.py: # TODO: UPDATE COMMENT HERE | ||
./redi.py: # TODO better description of commandline argument handling | ||
./redi.py: #TODO: make parameters configurable | ||
./redi.py: # TODO: post processing will go here | ||
./redi.py: # TODO: make this able to run against a local file if desired | ||
./redi.py: # TODO: Add preproc errors to report | ||
./redi.py:# TODO: look at adding a switch to RED-I, that will need to be caught here, that | ||
./redi.py:# @TODO: remove settings from signature | ||
./redi.py: TODO: fix load_rules and load_prerules for better parallelism | ||
./redi.py: # TODO figure out if this creates a sub process or not | ||
./redi.py: # TODO need to check for program exe3cution otherwise give error | ||
./report.py: # TODO: Replace this with a "backup_courier" constructor injection | ||
./report.py: # TODO: remove dependency on the order of the xml elements in the report | ||
./upload.py: @TODO: evaluate performance | ||
./utils/GetEmrData.py: # TODO: Replace csv2xml.py entirely? | ||
./utils/SimpleConfigParser.py:# TODO: | ||
./utils/throttle.py: # @TODO: investigate why the deque is not | ||
# TODO: make tests: requirement -- msg= mock requires setuptools>=17.1. Aborting installation | ||
TODO: make tests requirement- msg=sudo easy_install sftpserver | ||
TODO: make all settings files pythonic aka config.yml .. etc using YAML standard | ||
TODO: take NOT_DONE examples for values without units data points out of vagrant/redi_out_reference.csv for hcv examples |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,7 +18,7 @@ | |
|
||
setup( | ||
name='redi', | ||
version='0.15.0', | ||
version='0.15.1', | ||
author='https://www.ctsi.ufl.edu/research/study-development/informatics-consulting/', | ||
author_email='[email protected]', | ||
packages=find_packages(exclude=['test']), | ||
|
@@ -27,7 +27,7 @@ | |
'redi': ['utils/*.xsl', 'utils/*.xsd'] | ||
}, | ||
url='https://github.com/ctsit/redi', | ||
download_url = 'https://github.com/ctsit/redi/releases/tag/0.15.0', | ||
download_url = 'https://github.com/ctsit/redi/releases/tag/0.15.1', | ||
keywords = ['EMR', 'EHR', 'REDCap', 'Clinical Data'], | ||
license='BSD 3-Clause', | ||
description='REDCap Electronic Data Importer', | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters