Skip to content

Commit

Permalink
Merge pull request #648 from umccr/bugifx/get-num-lanes-from-xml
Browse files Browse the repository at this point in the history
  • Loading branch information
alexiswl authored Nov 4, 2024
2 parents cac8ce0 + 2335fb1 commit 4577a31
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,8 @@ def read_runinfo_xml(project_id: str, data_id: str) -> Dict:
project_id=project_id,
data_id=data_id
)
)
),
keep_flowcell_layout=True
)


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ def read_v2_samplesheet(
)

# And now append the lane attribute to every
v2_samplesheet_dict['bclconvert_data'] = flatten(
v2_samplesheet_dict['bclconvert_data'] = list(flatten(
map(
lambda bclconvert_data_row_iter: list(
map(
Expand All @@ -133,6 +133,6 @@ def read_v2_samplesheet(
),
v2_samplesheet_dict['bclconvert_data']
),
)
))

return v2_samplesheet_dict

0 comments on commit 4577a31

Please sign in to comment.