xiezhq / ISEScan

A python pipeline to identify IS (Insertion Sequence) elements in genome and metagenome
Apache License 2.0
79 stars 17 forks source link

library libssw.so not found #14

Closed tianrenmaogithub closed 4 years ago

tianrenmaogithub commented 4 years ago

I noticed that the instruction below may be corrected.

'And then copy sswlib.so to the directory of ISEScan and set the search path as: cp sswlib.so ../ export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:libssw.so'

The library name should be libssw.so rather than sswlib.so. And the right way to export the path is: export LD_LIBRARY_PATH=the_dir_name_rather_than_full_path:$LD_LIBRARY_PATH

Hope it helps.

xiezhq commented 4 years ago

Thanks for the comment. I have updated the Readme file accordingly.

Xie