From ef636cc57aa53efca3ba9bb756b447863fdfe379 Mon Sep 17 00:00:00 2001 From: Diane Trout Date: Mon, 23 Aug 2010 22:54:20 +0000 Subject: [PATCH] Add a "All Lanes" option to the control-lane field for the cases where we didn't set a control lane, but instead let the pipeline estimate from the entire flowcell. --- htsworkflow/frontend/experiments/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htsworkflow/frontend/experiments/models.py b/htsworkflow/frontend/experiments/models.py index 4026261..6554405 100755 --- a/htsworkflow/frontend/experiments/models.py +++ b/htsworkflow/frontend/experiments/models.py @@ -32,7 +32,7 @@ class FlowCell(models.Model): advanced_run = models.BooleanField(default=False) paired_end = models.BooleanField(default=False) read_length = models.IntegerField(default=32) #Stanford is currenlty 25 - control_lane = models.IntegerField(choices=[(1,1),(2,2),(3,3),(4,4),(5,5),(6,6),(7,7),(8,8)], null=True) + control_lane = models.IntegerField(choices=[(1,1),(2,2),(3,3),(4,4),(5,5),(6,6),(7,7),(8,8),(0,'All Lanes')], null=True) cluster_station = models.ForeignKey(ClusterStation, default=3) sequencer = models.ForeignKey(Sequencer, default=1) -- 2.30.2