Skip to content

Commit

Permalink
issue #1120 - rename to qc_graphs
Browse files Browse the repository at this point in the history
  • Loading branch information
davmlaw committed Jul 17, 2024
1 parent 803f7c0 commit c8a34bf
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion seqauto/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
perm_path('sequencing_stats', views.sequencing_stats, name='sequencing_stats'),
perm_path('sequencing_stats/data', views.sequencing_stats_data, name='sequencing_stats_data'),
perm_path('qc_data', views.qc_data, name='qc_data'),
perm_path('sequencing_historical_graphs', views.sequencing_historical_graphs, name='sequencing_historical_graphs'),
perm_path('qc_graphs', views.qc_graphs, name='qc_graphs'),
perm_path('graphs/qc_column_historical_graph/<int:qc_column_id>/<graph_type>/<enrichment_kit_separation>/<enrichment_kit_id>/<use_percent>', views.qc_column_historical_graph, name='qc_column_historical_graph'),
perm_path('graphs/sequencing_run_qc_graph/<sequencing_run_id>/<qc_compare_type>', views.sequencing_run_qc_graph, name='sequencing_run_qc_graph'),
perm_path('graphs/sequencing_run_qc_json_graph/<sequencing_run_id>/<qc_compare_type>', views.sequencing_run_qc_json_graph, name='sequencing_run_qc_json_graph'),
Expand Down
4 changes: 2 additions & 2 deletions seqauto/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -466,14 +466,14 @@ def qc_data(request):
return render(request, 'seqauto/qc_data.html')


def sequencing_historical_graphs(request):
def qc_graphs(request):
form = forms.QCColumnForm()
qc_type_totals = dict(QCType.objects.all().values_list("name", "total_field"))

context = {'form': form,
'qc_type_totals': qc_type_totals,
'show_enrichment_kit': QCGraphEnrichmentKitSeparationChoices.SHOW_ENRICHMENT_KIT}
return render(request, 'seqauto/sequencing_historical_graphs.html', context)
return render(request, 'seqauto/qc_graphs.html')


def qc_column_historical_graph(request, qc_column_id, graph_type, enrichment_kit_separation, enrichment_kit_id, use_percent):
Expand Down

0 comments on commit c8a34bf

Please sign in to comment.