Skip to content

Commit

Permalink
hot-fix 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
genomics-geek committed Jan 18, 2018
1 parent 797d186 commit d395f4c
Show file tree
Hide file tree
Showing 9 changed files with 24 additions and 17 deletions.
7 changes: 6 additions & 1 deletion HISTORY.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
History
-------

0.1.0 (2017-01-17)
0.1.0 (2017-01-16)
++++++++++++++++++

* Beta release

0.1.1 (2017-01-17)
++++++++++++++++++

* Bug fix. Quality table would fail to render when rows is empty.
4 changes: 2 additions & 2 deletions exome_slicer/static/bundles/asset-manifest.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"main.css": "css/main.11f77d90.css",
"main.css.map": "css/main.11f77d90.css.map",
"main.js": "js/main.c450b7bf.js",
"main.js.map": "js/main.c450b7bf.js.map",
"main.js": "js/main.ab5cd83e.js",
"main.js.map": "js/main.ab5cd83e.js.map",
"media/flags.png": "media/flags.9c74e172.png",
"media/icons.eot": "media/icons.674f50d2.eot",
"media/icons.svg": "media/icons.912ec66d.svg",
Expand Down
2 changes: 1 addition & 1 deletion exome_slicer/static/bundles/index.html
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no"><meta name="theme-color" content="#000000"><link rel="manifest" href="/static/bundles/manifest.json"><link rel="shortcut icon" href="/static/bundles/favicon.ico"><title>React App</title><link href="/static/bundles/css/main.11f77d90.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div><script type="text/javascript" src="/static/bundles/js/main.c450b7bf.js"></script></body></html>
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no"><meta name="theme-color" content="#000000"><link rel="manifest" href="/static/bundles/manifest.json"><link rel="shortcut icon" href="/static/bundles/favicon.ico"><title>React App</title><link href="/static/bundles/css/main.11f77d90.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div><script type="text/javascript" src="/static/bundles/js/main.ab5cd83e.js"></script></body></html>

Large diffs are not rendered by default.

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion exome_slicer/static/bundles/service-worker.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 9 additions & 7 deletions frontend/src/app/core/components/quality-table.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,13 +64,15 @@ class QualityTable extends React.PureComponent {

getRowClassName = (index) => {
const { coverage, quality, rows } = this.state
const depth = rows[index].min_coverage
const mappingQuality = rows[index].avg_mapping_quality

if (depth <= coverage && mappingQuality <= quality) {
return 'error'
} else if (depth <= coverage || mappingQuality <= quality) {
return 'warning'
if (rows.length > 0) {
const depth = rows[index].min_coverage
const mappingQuality = rows[index].avg_mapping_quality

if (depth <= coverage && mappingQuality <= quality) {
return 'error'
} else if (depth <= coverage || mappingQuality <= quality) {
return 'warning'
}
}
}

Expand Down
2 changes: 1 addition & 1 deletion frontend/webpack-stats.dev.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"status":"compiling","publicPath":"http://localhost:3000/"}
{"status":"done","publicPath":"http://localhost:3000/","chunks":{"main":[{"name":"static/js/bundle.js","publicPath":"http://localhost:3000/static/js/bundle.js","path":"/Users/gonzalezma/Projects/PublicApps/exome_slicer/frontend/static/js/bundle.js"},{"name":"static/js/bundle.js.map","publicPath":"http://localhost:3000/static/js/bundle.js.map","path":"/Users/gonzalezma/Projects/PublicApps/exome_slicer/frontend/static/js/bundle.js.map"}]}}
2 changes: 1 addition & 1 deletion frontend/webpack-stats.prod.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"status":"done","publicPath":"/static/bundles/","chunks":{"main":[{"name":"js/main.c450b7bf.js","publicPath":"/static/bundles/js/main.c450b7bf.js","path":"/Users/gonzalezma/Projects/PublicApps/exome_slicer/exome_slicer/static/bundles/js/main.c450b7bf.js"},{"name":"css/main.11f77d90.css","publicPath":"/static/bundles/css/main.11f77d90.css","path":"/Users/gonzalezma/Projects/PublicApps/exome_slicer/exome_slicer/static/bundles/css/main.11f77d90.css"},{"name":"js/main.c450b7bf.js.map","publicPath":"/static/bundles/js/main.c450b7bf.js.map","path":"/Users/gonzalezma/Projects/PublicApps/exome_slicer/exome_slicer/static/bundles/js/main.c450b7bf.js.map"},{"name":"css/main.11f77d90.css.map","publicPath":"/static/bundles/css/main.11f77d90.css.map","path":"/Users/gonzalezma/Projects/PublicApps/exome_slicer/exome_slicer/static/bundles/css/main.11f77d90.css.map"}]}}
{"status":"done","publicPath":"/static/bundles/","chunks":{"main":[{"name":"js/main.ab5cd83e.js","publicPath":"/static/bundles/js/main.ab5cd83e.js","path":"/Users/gonzalezma/Projects/PublicApps/exome_slicer/exome_slicer/static/bundles/js/main.ab5cd83e.js"},{"name":"css/main.11f77d90.css","publicPath":"/static/bundles/css/main.11f77d90.css","path":"/Users/gonzalezma/Projects/PublicApps/exome_slicer/exome_slicer/static/bundles/css/main.11f77d90.css"},{"name":"js/main.ab5cd83e.js.map","publicPath":"/static/bundles/js/main.ab5cd83e.js.map","path":"/Users/gonzalezma/Projects/PublicApps/exome_slicer/exome_slicer/static/bundles/js/main.ab5cd83e.js.map"},{"name":"css/main.11f77d90.css.map","publicPath":"/static/bundles/css/main.11f77d90.css.map","path":"/Users/gonzalezma/Projects/PublicApps/exome_slicer/exome_slicer/static/bundles/css/main.11f77d90.css.map"}]}}

0 comments on commit d395f4c

Please sign in to comment.