bowmanjeffs / paprica

paprica - PAthway PRediction by phylogenetIC plAcement
27 stars 9 forks source link

Update paprica-combine_results.py #98

Closed bklempay closed 9 months ago

bklempay commented 9 months ago

The master version of this script gave me the error message TypeError: 'NoneType' object is not iterable at line 232. I fixed this error by changing for f in os.listdir(cwd).sort(): to for f in sorted(os.listdir(cwd)):