Skip to content

Commit

Permalink
Support ont FCs in bioinfo tab
Browse files Browse the repository at this point in the history
  • Loading branch information
aanil committed Dec 13, 2024
1 parent 519f685 commit 8a90949
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions run_dir/design/bioinfo_tab/run_lane_sample_view.html
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,8 @@
{% set url_addition = "" %}
{% if flowcell.get("instrument_type") == "element"%}
{% set url_addition = "_element" %}
{% elif flowcell.get("instrument_type") == "ont"%}
{% set url_addition = "_ont" %}
{% end %}
<tr class="bioinfo-fc {% if disabled %} bioinfo-status-disabled {% end %}"
id="bioinfo-fc-{{ flowcell_id }}" data-parent="#bioinfo-project-{{ project_id }}">
Expand Down
2 changes: 2 additions & 0 deletions run_dir/design/bioinfo_tab/sample_run_lane_view.html
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,8 @@
{% set url_addition = "" %}
{% if flowcell.get("instrument_type") == "element"%}
{% set url_addition = "_element" %}
{% elif flowcell.get("instrument_type") == "ont"%}
{% set url_addition = "_ont" %}
{% end %}
<tr class="bioinfo-fc {% if flowcell.get('flowcell_status') in ['Demultiplexing', 'Transferring', 'Sequencing', 'ERROR', 'Failed', 'Delivered'] %} bioinfo-status-disabled {% end %}"
id="bioinfo-fc-{{ sample_id }}-{{ flowcell_id }}"
Expand Down

0 comments on commit 8a90949

Please sign in to comment.