Report if a lane was on a paired end flowcell from the library
[htsworkflow.git] / htsworkflow / frontend / samples / views.py
index 20b6837ea41f4f6f7e9564daba0ee0e169be5551..e63cf4d5748043668e3e195955758169e432ee38 100644 (file)
@@ -513,6 +513,8 @@ def library_dict(library_id):
     for lane in lib.lane_set.all():
         lane_info.append( {'flowcell':lane.flowcell.flowcell_id,
                            'lane_number': lane.lane_number,
+                           'paired_end': lane.flowcell.paired_end,
+                           'read_length': lane.flowcell.read_length,
                            'status_code': lane.status,
                            'status': LANE_STATUS_MAP[lane.status]} )