Skip to content

Commit

Permalink
Revert changes that allow 0 mismatch for all indexes that are shorter…
Browse files Browse the repository at this point in the history
… than 8nt
  • Loading branch information
chuan-wang committed Oct 30, 2024
1 parent 9e60825 commit d4c4daf
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions taca/illumina/NovaSeqXPlus_Runs.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,12 +83,6 @@ def _generate_samplesheet_subset(
or "BarcodeMismatchesIndex" not in k
):
output += f"{k},{v}{os.linesep}"
# Allow 0 mismatch for all indexes that are shorter than 8nt
else:
if index1_size != 0 and index1_size < 8:
output += f"BarcodeMismatchesIndex1,0{os.linesep}"
if index2_size != 0 and index2_size < 8:
output += f"BarcodeMismatchesIndex2,0{os.linesep}"
# Data
output += f"[Data]{os.linesep}"
datafields = []
Expand Down

0 comments on commit d4c4daf

Please sign in to comment.