Skip to content

Commit

Permalink
Merge pull request #306 from chuan-wang/master
Browse files Browse the repository at this point in the history
Handle special case with index 2 only for NovaSeq
  • Loading branch information
chuan-wang authored Jul 16, 2021
2 parents c157d72 + 278e33d commit c336c9f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions VERSIONLOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# TACA Version Log

## 20210716.1
Handle special case with index 2 only for NovaSeq

## 20210617.1
Support addtional 10X index types

Expand Down
2 changes: 1 addition & 1 deletion taca/illumina/HiSeqX_Runs.py
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ def _generate_per_lane_base_mask(self, sample_type, mask_table):
index1_size = lane_contents[0]
index2_size = lane_contents[1]
is_dual_index = False
if index1_size != 0 and index2_size != 0:
if (index1_size != 0 and index2_size != 0) or (index1_size == 0 and index2_size != 0):
is_dual_index = True
# Compute the basemask
base_mask = self._compute_base_mask(runSetup, sample_type, index1_size, is_dual_index, index2_size)
Expand Down

0 comments on commit c336c9f

Please sign in to comment.