-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4a96390
commit c060dc4
Showing
30 changed files
with
1,455 additions
and
381 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
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,6 @@ | ||
queue: | ||
- name: heritability-calc | ||
rate: 1/s | ||
retry_parameters: | ||
task_retry_limit: 2 | ||
task_age_limit: 1d |
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,50 @@ | ||
{% extends "_layouts/default.html" %} | ||
|
||
{% block content %} | ||
|
||
<div class="row"> | ||
<div class="col-md-10"> | ||
</div> <!-- /col-md-10 --> | ||
<div class="col-md-2"> | ||
<a id='create' value="create" type='submit' href="{{ url_for('heritability.heritability_create') }}" class="btn btn-primary btn-block"> | ||
<span class="glyphicon glyphicon-plus" aria-hidden="true"></span> | ||
New Calculation | ||
</a> | ||
</div> <!-- /col-md-2 --> | ||
</div> <!-- /row --> | ||
|
||
<div class="row"> | ||
<div class="col-md-12"> | ||
<table> | ||
<thead> | ||
<tr class="header"> | ||
<th><strong> Label </strong></th> | ||
<th><strong> Data Hash </strong></th> | ||
<th><strong> Status </strong></th> | ||
<th><strong> Created: </strong></th> | ||
<th><strong> </strong></th> | ||
</tr> | ||
</thead> | ||
<tbody> | ||
{% for item in items %} | ||
<tr> | ||
{% if item %} | ||
<td> {{ item.label }} </td> | ||
<td> {{ item.data_hash }} </td> | ||
<td> {{ item.status }} </td> | ||
<td> {{ item.created_on }} </td> | ||
<td> | ||
<a href="{{ url_for('heritability.heritability_result', id=item.key.name) }}"> | ||
View | ||
</a> | ||
</td> | ||
{% endif %} | ||
</tr> | ||
{% endfor %} | ||
</tbody> | ||
</table> | ||
</div> <!-- /col-md-12 --> | ||
</div> <!-- /row --> | ||
|
||
|
||
{% endblock %} |
Oops, something went wrong.