Skip to content
Snippets Groups Projects
Commit 9edd1e8b authored by Véronique  LEGRAND's avatar Véronique LEGRAND
Browse files

fixed reading of data; previous modif was done too chickly

parent 9d746b0d
No related branches found
No related tags found
No related merge requests found
Pipeline #153248 failed with stage
in 1 minute and 49 seconds
......@@ -294,8 +294,10 @@ def totReads(filin):
filein = open(filin, 'r')
line = 0
with io.BufferedReader(filein, buffer_size=bufsize) as buffered_f:
for l in buffered_f:
line+=1
#while filein.readline():
line += 1
# line += 1
seq = float(round(line / 4))
filein.close()
end_t = time.perf_counter_ns()
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment