First cycle can be 2 digit.
authorDiane Trout <diane@caltech.edu>
Thu, 3 Feb 2011 02:05:29 +0000 (18:05 -0800)
committerroot <root@jumpgate.caltech.edu>
Thu, 3 Feb 2011 02:06:14 +0000 (18:06 -0800)
htsworkflow/frontend/urls.py

index 57d00e1daf4d39664ca96b66daa08015a1686dd8..7856f0628c62f2f57bfc928f4390e3abbdd49dc9 100644 (file)
@@ -43,9 +43,9 @@ urlpatterns = patterns('',
     # sample / library information
     (r'^samples/', include('htsworkflow.frontend.samples.urls')),                   
     # Raw result files
-    (r'^results/(?P<flowcell_id>\w+)/(?P<cnm>C[1-9]-[0-9]+)/summary/',
+    (r'^results/(?P<flowcell_id>\w+)/(?P<cnm>C[0-9]+-[0-9]+)/summary/',
       'htsworkflow.frontend.samples.views.summaryhtm_fc_cnm'),
-    (r'^results/(?P<flowcell_id>\w+)/(?P<cnm>C[1-9]-[0-9]+)/eland_result/(?P<lane>[1-8])',
+    (r'^results/(?P<flowcell_id>\w+)/(?P<cnm>C[0-9]+-[0-9]+)/eland_result/(?P<lane>[1-8])',
       'htsworkflow.frontend.samples.views.result_fc_cnm_eland_lane'),
     (r'^results/(?P<fc_id>\w+)/(?P<cnm>C[1-9]-[0-9]+)/bedfile/(?P<lane>[1-8])/ucsc',
       'htsworkflow.frontend.samples.views.bedfile_fc_cnm_eland_lane_ucsc'),