Eureka! Clinical Analytics WebApp

Eureka! Clinical Analytics WebApp is the implementation of the Eureka! Clinical Analytics web user interface.

License

License

Categories

Categories

CLI User Interface Eureka Container Microservices
GroupId

GroupId

org.eurekaclinical
ArtifactId

ArtifactId

eurekaclinical-analytics-webapp
Last Version

Last Version

3.1-Alpha-6
Release Date

Release Date

Type

Type

war
Description

Description

Eureka! Clinical Analytics WebApp
Eureka! Clinical Analytics WebApp is the implementation of the Eureka! Clinical Analytics web user interface.
Project Organization

Project Organization

Emory University
Source Code Management

Source Code Management

https://github.com/eurekaclinical/eurekaclinical-analytics-webapp.git

Download eurekaclinical-analytics-webapp

How to add to project

<!-- https://jarcasting.com/artifacts/org.eurekaclinical/eurekaclinical-analytics-webapp/ -->
<dependency>
    <groupId>org.eurekaclinical</groupId>
    <artifactId>eurekaclinical-analytics-webapp</artifactId>
    <version>3.1-Alpha-6</version>
    <type>war</type>
</dependency>
// https://jarcasting.com/artifacts/org.eurekaclinical/eurekaclinical-analytics-webapp/
implementation 'org.eurekaclinical:eurekaclinical-analytics-webapp:3.1-Alpha-6'
// https://jarcasting.com/artifacts/org.eurekaclinical/eurekaclinical-analytics-webapp/
implementation ("org.eurekaclinical:eurekaclinical-analytics-webapp:3.1-Alpha-6")
'org.eurekaclinical:eurekaclinical-analytics-webapp:war:3.1-Alpha-6'
<dependency org="org.eurekaclinical" name="eurekaclinical-analytics-webapp" rev="3.1-Alpha-6">
  <artifact name="eurekaclinical-analytics-webapp" type="war" />
</dependency>
@Grapes(
@Grab(group='org.eurekaclinical', module='eurekaclinical-analytics-webapp', version='3.1-Alpha-6')
)
libraryDependencies += "org.eurekaclinical" % "eurekaclinical-analytics-webapp" % "3.1-Alpha-6"
[org.eurekaclinical/eurekaclinical-analytics-webapp "3.1-Alpha-6"]

Dependencies

compile (11)

Group / Artifact Type Version
org.jasig.cas.client : cas-client-core jar 3.2.1
org.eurekaclinical : eureka-client jar 5.1-Alpha-4
org.eurekaclinical : eurekaclinical-phenotype-client jar 1.1-Alpha-4
org.eurekaclinical : eurekaclinical-user-client jar 1.7
org.eurekaclinical : eurekaclinical-registry-client jar 1.6-Alpha-2
org.eurekaclinical : eurekaclinical-protempa-client jar 3.1-Alpha-4
org.eurekaclinical : eurekaclinical-standard-apis jar 4.1-Alpha-1
org.eurekaclinical : eurekaclinical-common jar 5.1-Alpha-1
com.sun.xml.bind : jaxb-core jar 2.3.0.1
javax.xml.bind : jaxb-api jar 2.3.1
com.sun.xml.bind : jaxb-impl jar 2.3.1

provided (1)

Group / Artifact Type Version
javax.servlet : javax.servlet-api jar 4.0.1

Project Modules

There are no modules declared in this project.

Eureka! Clinical Analytics Webapp

Georgia Clinical and Translational Science Alliance (Georgia CTSA), Emory University, Atlanta, GA

What does it do?

It implements a proxy servlet and router for web clients to access the web services provided by eurekaclinical-analytics-service, eurekaclinical-protempa-service, and eurekaclinical-user-service.

Latest release: Latest release

Version 2.0

The API gateway has no new functionality, but the services to which it provides access have the following new and changed functionality:

  • Basic support for id generation for tabular files.
  • New data processing modes for managing phenotypes.
  • Phenotype data store.

Version 1.0

The version 1.0 series is a refactoring of the eureka project's eureka-webapp module. The functionality is the same as in the last release of eureka-webapp.

Build requirements

Runtime requirements

Proxied REST APIs

You can call all of eureka's REST APIs through a proxy provided by eureka-webapp. The proxy will forward selected calls to eureka-protempa-etl and eurekaclinical-user-service. All other valid URLs will be forwarded to eureka-services. Replace /protected/api with /proxy-resource in your URLs. See the READMEs for each of these service projects for REST endpoint documentation.

Proxy calls that are forwarded to eurekaclinical-protempa-service

  • /proxy-resource/file
  • /proxy-resource/output

Proxy calls that are forwarded to eurekaclinical-user-service

  • /proxy-resource/users
  • /proxy-resource/roles

Proxy calls that are forwarded to eurekaclinical-analytics-service

Everything else

Building it

The project uses the maven build tool.

Typically, you build it by invoking mvn clean install at the command line. For simple file changes, not additions or deletions, you can usually use mvn install. See https://github.com/eurekaclinical/dev-wiki/wiki/Building-Eureka!-Clinical-projects for more details.

Performing system tests

You can run this project in an embedded tomcat by executing mvn process-resources cargo:run -Ptomcat after you have built it. You also must be running the eurekaclinical-analytics-webclient project. The webapp will then be accessible in your web browser at https://localhost:8000/eurekaclinical-analytics-webapp/. Your username will be superuser.

Installation

Configuration

This webapp is configured using a properties file located at /etc/eureka/application.properties. It supports the following properties:

  • cas.url: https://hostname.of.casserver:port/cas-server
  • eureka.common.callbackserver: https://hostname:port
  • eureka.common.demomode: true or false depending on whether to act like a demonstration; default is false.
  • eureka.common.ephiprohibited: true or false depending on whether to display that managing ePHI is prohibited; default is true.
  • eureka.webapp.registrationenabled: true or false to enable/disable registering for an account managed by this project; default is true.
  • eureka.support.uri: URI link for contacting support. Could be http, https, or mailto.
  • eureka.support.uri.name: Display name of the URI link for contacting support.
  • eureka.webapp.callbackserver: URL of the server running the webapp; default is https://localhost:8443.
  • eureka.webapp.url: the URL of the webapp; default is https://localhost:8443/eurekaclinical-analytics-webapp.
  • eureka.webapp.ephiprohibited: true or false depending on whether to display that managing ePHI is prohibited; default is true.
  • eureka.webapp.demomode: true or false depending on whether to act like a demonstration; default is false.
  • eureka.services.url: URL of the server running the services layer; default is https://localhost:8443/eurekaclinical-analytics-service.

A Tomcat restart is required to detect any changes to the configuration file.

WAR installation

  1. Stop Tomcat.
  2. Remove any old copies of the unpacked war from Tomcat's webapps directory.
  3. Copy the warfile into the Tomcat webapps directory, renaming it to remove the version if necessary. For example, rename eurekaclinical-analytics-webapp-1.0.war to eurekaclinical-analytics-webapp.war.
  4. Start Tomcat.

Maven dependency

<dependency>
    <groupId>org.eurekaclinical</groupId>
    <artifactId>eurekaclinical-analytics-webapp</artifactId>
    <version>version</version>
</dependency>

Developer documentation

Getting help

Feel free to contact us at [email protected].

org.eurekaclinical

Eureka! Clinical

Microservices for clinical and translational research

Versions

Version
3.1-Alpha-6
3.1-Alpha-5
3.1-Alpha-4
3.1-Alpha-3
3.1-Alpha-2
3.0
3.0-Alpha-5
3.0-Alpha-3
3.0-Alpha-2
3.0-Alpha-1
2.1-Alpha-1
2.0
2.0-Beta-2
2.0-Beta-1
1.1-Beta-8
1.1-Beta-7
1.1-Beta-6
1.1-Beta-5
1.1-Beta-4
1.1-Beta-3
1.1-Beta-2
1.1-Beta-1
1.0
1.0-Alpha-2