Skip to content

Commit

Permalink
Updated changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
Chiara Rasi committed Oct 11, 2024
1 parent 09574c8 commit 2cfeb30
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ About changelog [here](https://keepachangelog.com/en/1.0.0/)
- Variants query backend allows rank_score filtering
- Added script to tabulate causatives clinical filter rank
- Do not display inheritance models associated to ORPHA terms on variant page
- Moved edit and delete buttons close to gene name on gene panel page
- Moved edit and delete buttons close to gene names on gene panel page and other aesthetical fixes
### Fixed
- Make BA1 fully stand-alone to Benign prediction
- Modifying Benign terms to "Moderate" has no effect under Richards. Ignored completely before, will retain unmodified significance now
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,13 @@
</select>
</div>
<div class="col-md-4">
{{ form.reduced_penetrance() }}
{{ form.reduced_penetrance.label(class="control-label") }}
(OMIM: {{ 'Yes' if gene.incomplete_penetrance else 'unknown' }})
<div>{{ form.reduced_penetrance() }}</div>
</div>
<div class="col-md-4">
{{ form.mosaicism() }}
{{ form.mosaicism.label(class="control-label") }}
<div>{{ form.mosaicism() }}</div>
</div>
</div>
<div class="row">
Expand Down
2 changes: 1 addition & 1 deletion scout/server/blueprints/panels/templates/panels/panel.html
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@
<input type="hidden" name="hgnc_id" value="{{ gene.hgnc_id }}">
<button name="action" type="submit" value="delete" class="btn btn-danger btn-xs">Delete</button>
</form>
<a class="btn btn-secondary btn-xs ms-1" href="{{ url_for('panels.gene_edit', panel_id=panel._id, hgnc_id=gene.hgnc_id) }}">Edit</a>
<a class="btn btn-secondary text-white btn-xs ms-1" href="{{ url_for('panels.gene_edit', panel_id=panel._id, hgnc_id=gene.hgnc_id) }}">Edit</a>
{% endif %}
</td>
<td>
Expand Down

0 comments on commit 2cfeb30

Please sign in to comment.