Skip to content

Commit

Permalink
V1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
anthonysena committed Sep 21, 2016
1 parent 3da2399 commit c483c78
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 48 deletions.
31 changes: 19 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,18 +1,25 @@
# ATLAS

ATLAS is a unified web interface that attempts to integrate features from various OHDSI applications into a single cohesive experience.
<a href="http://www.ohdsi.org/web/atlas"><img src="http://www.ohdsi.org/web/wiki/lib/exe/fetch.php?cache=&media=documentation:software:logo_without_text.png" align="left" hspace="10" vspace="6" width="164" height="200"></a>

ATLAS is currently in alpha release.
Feedback is welcome.
**ATLAS** is an open source software tool for researchers to conduct scientific analyses on standardized observational data converted to the [OMOP Common Data Model V5](http://www.ohdsi.org/web/wiki/doku.php?id=documentation:cdm:single-page "OMOP Common Data Model V5"). Researchers can create cohorts by defining groups of people based on an exposure to a drug or diagnosis of a particular condition using healthcare claims data. ATLAS has vocabulary searching of medical concepts to identify people with specific conditions, drug exposures etc. Patient profiles can be viewed within a specific cohort allowing visualization of a particular subject's health care records. Population effect level estimation analyses allows for comparison of two different cohorts and leverages R packages.

ATLAS is HTML, CSS and Javascript and can be deployed through the following two steps.
## Resources

1. Host all files on a web server of your choice.
2. Update the following section of the config.js file to point to your active OHDSI WebAPI deployment.
* [Atlas (ohdsi.org)](http://www.ohdsi.org/web/atlas) **Please note: Google Chrome is the recommended browser for ATLAS.**
* [Documentation](http://www.ohdsi.org/web/wiki/doku.php?id=documentation:software:atlas)
* [Releases](https://github.com/OHDSI/Atlas/releases "Atlas releases")

config.services = [
{
name: 'My OHDSI API',
url: 'http://api.myserver.net/WebAPI/'
}
];
## Technology

ATLAS is built using HTML, CSS and [Knockout JavaScript](http://knockoutjs.com/ "Knockout JavaScript"). For more information on using Atlas, please refer to the [setup guide](http://www.ohdsi.org/web/wiki/doku.php?id=documentation:software:atlas:setup "setup guide").

## Dependencies
- [WebAPI](https://github.com/OHDSI/WebAPI "WebAPI")

## Getting Involved
* Developer questions/comments/feedback: <a href="http://forums.ohdsi.org/c/developers">OHDSI Forum</a>
* We use the <a href="../../issues">GitHub issue tracker</a> for all bugs/issues/enhancements

##License
ATLAS is licensed under Apache License 2.
43 changes: 8 additions & 35 deletions js/components/home.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<div class="paddedWrapper">
<div class="home-welcome">
<div class="heading">Welcome to ATLAS.</div>
<div> ATLAS is an open source application developed as a part of <a href="http://www.ohdsi.org">OHDSI</a> intended to provide a unified interface to patient level data and analytics.</div>
<div> ATLAS is an open source application developed as a part of <a href="http://www.ohdsi.org" target="_new">OHDSI</a> intended to provide a unified interface to patient level data and analytics.</div>
</div>
<div class="home-documentation">
<div class="heading">Documentation</div>
Expand All @@ -26,44 +26,17 @@

<div class="heading">Release Notes</div>
<div class="release-notes">
<div>
ATLAS Version 1.2.0 Current Release Notes
<ul>
<li>Cohort Definition End Dates</li>
<li>New Feature: Estimation</li>
<li>Concept Set Copy Enabled</li>
</ul>
</div>

<div>
ATLAS Version 1.1.0 Current Release Notes
<ul>
<li>Fix: Cohort Definition UI bugfixes</li>
<li>Fix: Data Sources report fixes (Measurement reports and trellis graph rendering NaNs)</li>
<li>Feature: Cohort Definitions (CIRCE) UI and Backend Changes: Inclusion rules and Inclusion Rule Impact Reports</li>
<li>Feature: Patient Profiles</li>
</ul>
</div>

<div>
WebAPI Version 1.2.0 Current Release Notes
<ul>
<li>Feature: Cohort generation update to support inclusion rules</li>
<li>Feature: Inclusion rule impact analysis</li>
</ul>
<div class="paddedWrapper">
<a href="https://github.com/OHDSI/Atlas/releases" target="_new">ATLAS Version 1.3.0 Release Notes</a>
<br/>
<a href="https://github.com/OHDSI/WebAPI/releases" target="_new">WebAPI Version 1.4.0 Release Notes</a>
</div>

<div style="padding-bottom: 10px;">
<div><a href="https://github.com/OHDSI/Atlas/releases">Prior Atlas releases</a></div>
<div><a href="https://github.com/OHDSI/WebAPI/releases">Prior WebAPI releases</a></div>
</div>

<div>
Additional Details:
<br/> This latest release contains <strong data-bind="text:github_status().length"></strong> feature enhancements and issue resolutions.
<div class="paddedWrapper">
<br/>This latest release contains <strong data-bind="text:github_status().length"></strong> feature enhancements and issue resolutions:
</div>

<div class="github-issue-container" data-bind="foreach:github_status">
<div class="paddedWrapper github-issue-container" data-bind="foreach:github_status">
<div class="github-issue">
<a target="_blank" data-bind="attr:{href: html_url, title: title}, text:title"></a>
<img class="github-avatar" data-bind="attr:{src: user.avatar_url}" />
Expand Down
2 changes: 1 addition & 1 deletion js/components/home.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ define(['knockout', 'text!./home.html'], function (ko, view) {
self.github_status = ko.observableArray();

$.ajax({
url: "https://api.github.com/repos/OHDSI/Atlas/issues?state=closed&milestone=7",
url: "https://api.github.com/repos/OHDSI/Atlas/issues?state=closed&milestone=6",
method: 'GET',
contentType: 'application/json',
success: function (data) {
Expand Down

0 comments on commit c483c78

Please sign in to comment.