BrooksLabUCSC / flair

Full-Length Alternative Isoform analysis of RNA
Other
203 stars 69 forks source link

Update count_sam_transcripts.py #251

Closed listen2099 closed 10 months ago

listen2099 commented 1 year ago

Remove Pool in count_sam_transcripts.py

The child process is not responding when the sam file is very large (100G+ for example, on my computer). I tried to solve this problem with shared variables among each child process, but it didn't improve.

In fact, after testing, it is found that the running time without Pool is not much different from that with Pool.

Jeltje commented 10 months ago

Good point, thanks!