Skip to content

Commit

Permalink
Merge pull request #215 from fls-bioinformatics-core/fix-MockIllumina…
Browse files Browse the repository at this point in the history
…Run-for-novaseq

bcftbx/mock: fix bug in 'MockIlluminaRun' when generating mock NovaSeq runs
  • Loading branch information
pjbriggs authored Dec 19, 2023
2 parents 971bd30 + 57942be commit 9717789
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion bcftbx/mock.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,7 @@ def create(run_name,bases_mask,nlanes,tilecount=None,
is_indexed_read = ('Y' if item.upper().startswith("I")
else 'N')
num_cycles = item[1:]
assert int(num_cycles) > 0
reads.append({ 'is_indexed_read': is_indexed_read,
'num_cycles': num_cycles})
# Other attributes
Expand Down Expand Up @@ -855,7 +856,7 @@ def __init__(self,name,platform,top_dir=None,
self._nlanes = 2
self._bcl_ext = '.bcl.bgzf'
self._sample_sheet_content = None
self._bases_mask = "y76,I0,I10,y76"
self._bases_mask = "y76,I10,I10,y76"
self._ntiles = 158
self._include_filter = True
self._include_control = False
Expand Down

0 comments on commit 9717789

Please sign in to comment.