The installation instructions make a big deal about specifying the exact versions of certain dependencies, so I installed it into a container to make sure all the versions would be fixed. However, mapExome.py actually uses /usr/bin/python instead:
I noticed these problems because my container did not have Python or zlib installed, so I got errors, but this also means that, following the instructions in your installation guide, mapExome.py is always using the system Python interpreter and parts of MToolbox are being compiled with the system zlib. It might not cause any problems, but I don't think it's what you wanted.
The installation instructions make a big deal about specifying the exact versions of certain dependencies, so I installed it into a container to make sure all the versions would be fixed. However,
mapExome.py
actually uses/usr/bin/python
instead:Also, I noticed that the installation fails unless I additionally set
where
/opt/mtoolbox
was my$MTOOLBOX_ROOT
.I noticed these problems because my container did not have Python or zlib installed, so I got errors, but this also means that, following the instructions in your installation guide,
mapExome.py
is always using the system Python interpreter and parts of MToolbox are being compiled with the system zlib. It might not cause any problems, but I don't think it's what you wanted.