Skip to content
Snippets Groups Projects
Commit cb8f3d19 authored by Kathleen Moriarty's avatar Kathleen Moriarty Committed by Kathleen Moriarty
Browse files

fixed: bug in line 85

parent d3ccefa8
Branches
No related tags found
1 merge request!17Issue 7
......@@ -82,7 +82,7 @@ def read_sequencing(
if len(frag) < read_len:
# Calculate number of random nucleotides to add to the end of the read
diff = read_len - read_len
diff = read_len - len(frag)
# Select random nucleotides from list of possible
rand_samp = choices(nucleotides, k=diff)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment