Why did I see the different results on between galaxy platform and local environment (mac, conda)?
During galaxy was down, I used Lefse with local conda environment in mac.
The same data set was computed with the same settings such as class row, subject row, and normalization value).
Then I found that the results of galaxy and local were different, especially the order of KEGG number in output like the attached plots (sorry that the png file generated from local may be obscure…)
Hi @Sarasa ,
This is due to the version difference of lefse condav1.0.8 and the galaxy/github lefse v1.1.2. Please use the manual installation from github as python setup.py install if needed in future rather than conda version since conda lefse is outdated.
Hi @sagunmaharjann thank you so much for your reply.
Now I understood the current situation.
Then I come up with additional questions as follows:
what kind of command line could I use to check the version of conda lefse? I would like to see it but I think the option --version did not work for any command of lefse.
could you tell me how to install the latest version (I mean v1.1.2) lefse from github? Is it just like, for example,
python setup.py install lefse
Is the above correct? Or, can I use lefse just after executing python setup.py install?
Which webpage can I refer to install lefse manually from github?
Hi!
I know that this is an old thread, but this might be useful for people trying to install Lefse from the github repository. This is what I did:
Cloned the repository git clone https://github.com/SegataLab/lefse.git
In the lefse-master folder I ran pip install pip install .
Because I am using conda environments, my system didn’t let me install the package first. I had to create and activate a pip virtual environment: python3 -m venv lefse-git source lefse-git/bin/activate