Skip to content

Commit

Permalink
Merge pull request #903 from aanil/py312
Browse files Browse the repository at this point in the history
Support ont FCs in bioinfo tab
  • Loading branch information
aanil authored Jan 7, 2025
2 parents c3b1989 + aff9646 commit 7d140ad
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ cffi
CouchDB==1.1
ecdsa>=0.13
genologics @ git+https://github.com/SciLifeLab/genologics.git
genologics_sql @ git+https://github.com/SciLifeLab/genologics_sql.git
genologics_sql @ git+https://github.com/NationalGenomicsInfrastructure/genologics_sql.git
httplib2>=0.10.3
ibmcloudant>=0.9.1
markdown
Expand Down
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 7d140ad

Please sign in to comment.