ylab-hi / ScanExitron

A computational workflow for exitron splicing identification
MIT License
12 stars 6 forks source link

A bug in line 596 #12

Closed zyh4482 closed 5 months ago

zyh4482 commented 5 months ago

Python 3.9.12

In line 596, tmp_dir = TemporaryDirectory(delete=false) will not be an accepted argument, reporting error message. TypeError: __init__() got an unexpected keyword argument 'delete'

Replace it with tmp_dir = TemporaryDirectory() will work.