From ddeb263741a54087a22a5627e09181ef8e83415b Mon Sep 17 00:00:00 2001 From: Diane Trout Date: Fri, 11 Sep 2009 00:44:01 +0000 Subject: [PATCH] None is better than a baddly munged string for when we don't know the cluster/tile value --- htsworkflow/frontend/samples/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htsworkflow/frontend/samples/views.py b/htsworkflow/frontend/samples/views.py index d79d0b8..0b7aab4 100644 --- a/htsworkflow/frontend/samples/views.py +++ b/htsworkflow/frontend/samples/views.py @@ -252,7 +252,7 @@ def _summary_stats(flowcell_id, lane_id): if len(gerald_summary) > end and gerald_summary[end].has_key(lane_id): eland_summary.clusters = gerald_summary[end][lane_id].cluster else: - eland_summary.clusters = 'n/a' + eland_summary.clusters = None eland_summary.cycle_width = cycle_width if hasattr(eland_summary, 'genome_map'): eland_summary.summarized_reads = runfolder.summarize_mapped_reads( -- 2.30.2