Closed timothykoala closed 1 year ago
Hey, Try out some of these approaches to see if they fix your issue. I had the same error and it was because bedgraphtobigwg could not be found.
https://github.com/MiraldiLab/maxATAC/issues/102
Good luck, Tareian
Thanks, It works for me now by reinstall libncurses-dev. Got a similar error later on loading shared libraries: libssl.so.1.0.0 on bedGraphToBigWig
For the bedGraphToBigWig dependency on libssl.so.1.0.0 and libcrypto.so.1.0.0 is present by default.
However, these libraries are updated in Ubuntu 20.04.4 to libssl.so.1.1 and libcrypt.so.1.1.0 Workaround suscessfully by
$ conda remove ucsc-bedgraphtobigwig
$ locate libssl.so.1.1
$ ln -s /<path_to_libssl>/libssl.so.1.1 /<path_to_libssl>/libssl.so.1.0.0
$ locate libcrypt.so.1.1.0
$ ln -s /<path_to_libcrypto>/libcrypt.so.1.1.0 /<path_to_libcrypto>/libcrypto.so.1.0.0
$ conda install ucsc-bedgraphtobigwig
$ ldd /opt/miniconda3/pkgs/ucsc-bedgraphtobigwig-357-0/bin/bedGraphToBigWig
linux-vdso.so.1 (0x00007ffc9d7d8000)
libmysqlclient.so.18 => not found
libpthread.so.0 => /lib/x86_64-linux-gnu/libpthread.so.0 (0x00007f6a5fe64000)
libm.so.6 => /lib/x86_64-linux-gnu/libm.so.6 (0x00007f6a5fd15000)
librt.so.1 => /lib/x86_64-linux-gnu/librt.so.1 (0x00007f6a5fd0b000)
libdl.so.2 => /lib/x86_64-linux-gnu/libdl.so.2 (0x00007f6a5fd05000)
libstdc++.so.6 => /lib/x86_64-linux-gnu/libstdc++.so.6 (0x00007f6a5fb21000)
libssl.so.1.0.0 => /lib/x86_64-linux-gnu/libssl.so.1.0.0 (0x00007f6a5fa8e000)
libcrypto.so.1.0.0 => /lib/x86_64-linux-gnu/libcrypto.so.1.0.0 (0x00007f6a5fa53000)
libpng16.so.16 => /lib/x86_64-linux-gnu/libpng16.so.16 (0x00007f6a5fa1b000)
libz.so.1 => /lib/x86_64-linux-gnu/libz.so.1 (0x00007f6a5f9ff000)
libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x00007f6a5f80d000)
/lib64/ld-linux-x86-64.so.2 (0x00007f6a5fe9a000)
libgcc_s.so.1 => /lib/x86_64-linux-gnu/libgcc_s.so.1 (0x00007f6a5f7f0000)
libcrypto.so.1.1 => /lib/x86_64-linux-gnu/libcrypto.so.1.1 (0x00007f6a5f51a000)
Dear maxATAC developers,
I followed the install instructions and install it with conda on my Linux Ubuntu workstation, everything works well on installation but I faced difficulty on running maxATAC on prepare step. I double checked the path for my conda installation is in the ./opt/ directory and maybe I missed something on saving files or installation on correct directory? Thanks in advances.