Initial port to python3
[htsworkflow.git] / htsworkflow / pipelines / __init__.py
index 8b4b191e65efc072db8b74e2c2786020b27cff7d..9297f3e64d01d3eb074a960ed54c28ff786f011f 100644 (file)
@@ -11,5 +11,5 @@ EUROPEAN_DATE_RE = "([0-9]{1,2}-[0-9]{1,2}-[0-9]{4,4})"
 VERSION_RE = "([0-9\.]+)"
 USER_RE = "([a-zA-Z0-9]+)"
 LANES_PER_FLOWCELL = 8
-LANE_LIST = range(1, LANES_PER_FLOWCELL + 1)
+LANE_LIST = list(range(1, LANES_PER_FLOWCELL + 1))