We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4679a6e commit 1ef5ff8Copy full SHA for 1ef5ff8
micall/utils/fasta_to_fastq.py
@@ -59,7 +59,7 @@ def simulate_reads(reference: Seq,
59
60
for i in range(n_reads):
61
# Choose a read length uniformly between min_length and max_length.
62
- read_length = random.randint(min_length, max_length)
+ read_length = rng.randint(min_length, max_length)
63
# Choose a start index from a fair distribution.
64
start = next(gen)
65
end = start + read_length
0 commit comments