-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Coloring selected gene and other changes
- Added some new config files to manage builds easily - Changed all config files to reflect having Firebase - Cleaned scatter and row charts component code - Fixes #2 - Fixed the positioning in the row chart to reflect how the forest plot works - Improved scatter and row charts tooltips - Removed the line chart component - Changed how the data is passed to the targets list and search components
- Loading branch information
Showing
33 changed files
with
435 additions
and
235 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
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,4 @@ | ||
{ | ||
"title": "Wall of Targets", | ||
"description": "Wall of Targets is an application to aggregate genomic evidence supporting candidate gene and module targets nominated by members of the AMP-AD consortium." | ||
} |
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,10 @@ | ||
{ | ||
"firebase": { | ||
"apiKey": "AIzaSyBMS96wgJfydRf7BLDVh4DGtRKAZT8UpTM", | ||
"authDomain": "wall-of-targets.firebaseapp.com", | ||
"databaseURL": "https://wall-of-targets.firebaseio.com", | ||
"projectId": "wall-of-targets", | ||
"storageBucket": "wall-of-targets.appspot.com", | ||
"messagingSenderId": "256222676709" | ||
} | ||
} |
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,11 @@ | ||
{ | ||
"firebase": { | ||
"apiKey": "AIzaSyBMS96wgJfydRf7BLDVh4DGtRKAZT8UpTM", | ||
"authDomain": "wall-of-targets.firebaseapp.com", | ||
"databaseURL": "https://wall-of-targets.firebaseio.com", | ||
"projectId": "wall-of-targets", | ||
"storageBucket": "wall-of-targets.appspot.com", | ||
"messagingSenderId": "256222676709" | ||
}, | ||
"gtmKey" : "GTM-XXXXXXX" | ||
} |
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,19 @@ | ||
server { | ||
listen 80; | ||
|
||
gzip on; | ||
gzip_http_version 1.1; | ||
gzip_disable "MSIE [1-6]\."; | ||
gzip_min_length 1100; | ||
gzip_vary on; | ||
gzip_proxied expired no-cache no-store private auth; | ||
gzip_types text/plain text/css application/json application/javascript application/x-javascript text/xml application/xml application/xml+rss text/javascript; | ||
gzip_comp_level 5; | ||
|
||
root /usr/share/nginx/html; | ||
|
||
location / { | ||
index index.html index.htm; | ||
try_files $uri $uri/ /index.html =404; | ||
} | ||
} |
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
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
This file was deleted.
Oops, something went wrong.
1 change: 0 additions & 1 deletion
1
src/app/charts/line-chart/line-chart-view/line-chart-view.component.html
This file was deleted.
Oops, something went wrong.
Empty file.
26 changes: 0 additions & 26 deletions
26
src/app/charts/line-chart/line-chart-view/line-chart-view.component.ts
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.