-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME
108 lines (83 loc) · 3.4 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
${project.name} ${project.version} -- An ETL Tool for Loading Data into
i2b2. Department of Biomedical Informatics, ${project.organization.name}
OVERVIEW
${project.description}
WHAT'S NEW
Version 2.0 <need to fill in>
Version 1.9 includes an update to the UI, now using Bootstrap 3,
to make the application more usable on mobile devices. It also
includes support for i2b2 1.7. A new feature to allow usage of
BioPortal for ontologies was added. The codebase was also updated
to utilize Java 7. A data element search functionality was
added to the phenotype editor and job submission screens. Eureka!
can now utilize OAuth as an authentication mechanism, allowing
the use of services like Facebook, Twitter, Google Plus, and other
to log into the system. Finally, many improvements were made
to ease the process of installing and configuring the software.
Version 1.8.2 includes minor bug-fixes.
Version 1.8.1 includes minor bug-fixes.
Version 1.8 provides the following changes:
- Ability to directly connect to databases and data warehouses as sources of
patient data
- Improvements to the phenotype editor
Version 1.7 added Liquibase support for database migrations and additional data
element editor features. You can specify frequencies of consecutive data elements
for any data element now. You also can specify value thresholds that are
specific to a disease or condition.
Version 1.6 extended the rudimentary data element editing support
provided in version 1.5 to provide a complete data element editor. You
can specify a relatively complete set of the temporal patterns that
can be specified in the underlying Protempa software.
REQUIREMENTS
The current version is known to work with Oracle Java 8. It is
expected to work with OpenJDK 8 as well.
INSTALLATION
Once downloaded and unpacked, please see http://eurekaclinical.org/ for
documentation on installation and usage.
To compile from source, make sure JDK 8 and Maven >= 3.2.5 are installed.
You also need an Oracle Technology Network account because the build
process pulls a copy of the Oracle JDBC driver from Oracle's servers.
Once you have an account, add the following to your ~/.m2/settings.xml file:
<settings>
...
<servers>
...
<server>
<id>maven.oracle.com</id>
<username>your_username</username>
<password>your_password</password>
<configuration>
<basicAuthScope>
<host>ANY</host>
<port>ANY</port>
<realm>OAM 11g</realm>
</basicAuthScope>
<httpConfiguration>
<all>
<params>
<property>
<name>http.protocol.allow-circular-redirects</name>
<value>%b,true</value>
</property>
</params>
</all>
</httpConfiguration>
</configuration>
</server>
...
</servers>
...
</settings>
See http://docs.oracle.com/middleware/1213/core/MAVEN/config_maven_repo.htm#MAVEN9010
for more information.
CONTACTING US
Please send an email to [email protected] for support or questions.
LICENSING
${project.name} is freely available as open source under
the Apache License, Version 2.0. A copy of the license is in the
LICENSE file provided in this distribution.
${project.name} is Copyright (C) ${project.inceptionYear}-2015 ${project.organization.name}.
MORE INFORMATION
Please see ${aiw.site.url} for more information and
${project.url} for technical
documentation.