Jay Urbain, PhD
[email protected]
George Kowalski [email protected]
Java Maven web service app. The application is accessible through a web page (index.jsp) or a JSON-based web service.
The web app and web service links provided below are for evaluation only and not for production use.
- Apache Tomcat 8.X ( Support for Servlet Spec 3 )
- Apache Maven ( https://maven.apache.org/ )
Install Apache tomcat 8.* from ( http://tomcat.apache.org/ ) Install Apache Maven
Checkout this code with :
git clone [email protected]:gkowalski/ctsi-mcw-deid-service.git
Next compile the code with :
cd ctsi-mcw-deid-service
mvn clean
mvn package
This will produce a deployable war file under the target subdirectory. ( ctsi-mcw-deid-service/target/ctsi-mcw-deid-service.war ) copy this file to your ~tomcat8/webapps/ directory.
cd ~tomcat/bin
./startup.sh
Open your browser and go to the URL :
http://localhost:8080/ctsi-mcw-deid-service/
After loading , which should ne automatic
https://cis.ctsi.mcw.edu/deid/
https://cis.ctsi.mcw.edu/deid/deidservice
$ curl -H "Content-Type: application/json" -X POST -d '{"dateoffset":"10","name":"Jay","recordlist":["Jay Urbain, [email protected], born December 6, 2156 is an elderly caucasian male suffering from illusions of grandeur and LBP.", "He is married to Kimberly Urbain, who is much better looking.", "Patient father, Francis Urbain has a history of CAD and DM.", "Jay has been prescribed meloxicam, and venti americano.", "He lives at 9050 N. Tennyson Dr., Disturbia, WI with his wife and golden retriever Mel.", "You can reach him at 414-745-5102."]}' https://cis.ctsi.mcw.edu/deid/deidservice
{"name":"Jay","dateoffset":"10","deidlist":["[PATIENT[PERSON] [PERSON], [[email protected]] , born [12_16_2156] is an elderly caucasian male suffering from illusions of grandeur and LBP. ","He is married to [PERSON] [PERSON], who is much better looking. ","Patient father, [PERSON] [PERSON] has a history of CAD and DM. ","[PATIENT] has been prescribed meloxicam, and venti americano. ","He lives at [xxxxx x. xxxxx] Dr., Disturbia, WI with his wife and golden retriever [PERSON]. ","You can reach him at [xxx_xxx_xxxx] . "]}
"CTSI MCW Deidentification" is licensed under the GNU General Public License (v3 or later; in general "CTSI MCW Deidentification" code is GPL v2+, but "CTSI MCW Deidentification" uses several Apache-licensed libraries, and so the composite is v3+). Note that the license is the full GPL, which allows many free uses, but not its use in proprietary software which is distributed to others. For distributors of proprietary software, "CTSI MCW Deidentification" is also available from CTSI of Southeast Wisconsin under a commercial licensing You can contact us at [email protected].
The application uses [Stanford's Core NLP] (https://github.com/stanfordnlp/CoreNLP) for named entity identification.
Manning, Christopher D., Mihai Surdeanu, John Bauer, Jenny Finkel, Steven J. Bethard, and David McClosky. 2014. The Stanford CoreNLP Natural Language Processing Toolkit In Proceedings of the 52nd Annual Meeting of the Association for Computational Linguistics: System Demonstrations, pp. 55-60. pdf.