Add a "All Lanes" option to the control-lane field for the cases
authorDiane Trout <diane@caltech.edu>
Mon, 23 Aug 2010 22:54:20 +0000 (22:54 +0000)
committerDiane Trout <diane@caltech.edu>
Mon, 23 Aug 2010 22:54:20 +0000 (22:54 +0000)
where we didn't set a control lane, but instead let the pipeline
estimate from the entire flowcell.

htsworkflow/frontend/experiments/models.py

index 40262618ef9e7e3cd1c6850ad291f7fdffb2260f..6554405dab8cdfdc13fcd33005660f8499b1ecc8 100755 (executable)
@@ -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)