-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Installl software on AWS #1
Comments
Blast and Prodigal worked well. But when it came to installing Prokka, the issue you mentioned was just the beginning of the dependency hell. I've tried to solve some of them, but problems still exist. The one I'm dealing with now has a quite ambiguous error log, not explicitly showing which part fails. If I still can't solve it, I'll tell you and hope that you can help me out. (or just use conda enviroment, don't deal with these dependency issues) |
Regarding Prokka and Perl dependency, what is the current error message/log? |
Here is the packages I additionally installedIn order to use cpanm: I tried many other things (but it turned out that those were not necessary), and finally last problem should be |
Error log of Bio::DB::GenPept
|
So I'm not sure about the reason why the tests failed. Because It seems that it doesn't miss any other packages. |
This one is interesting, and you do encounter this in bioinformatics from time to time. Essentially, the executed answer is "no hit" and the program matched to something.
This is due to the database is constantly updating, but the software package didn't keep up to date. Solution: bioperl/Bio-DB-NCBIHelper#8 So, currently, there is no easy my around it, the current solution is to |
I did a force install last time, and in some steps the prokka failed, so I'm not sure if this time will work but will try it. |
If that's the error you send through line last time, since you went through all these crazy stuffs on installing all these dependencies now, you might be able to resolve that by installing another dependence. |
Prokka can run nowSomething that I did:
Done! |
Well done! Regarding |
Actually I wrote my own version. But since we move to prodigal and blast, currently there's no need to use it. |
Ya, there are learning exercises, hopefully, it will pay off one day. please make sure you create an AIM for that. |
I just created one and thank you for your help! |
General AWS Linux
It's is based on CentOS, same family as RedHat. The package management system is 'RPM" via "yum'
i.e.
Blast
There are 3 ways to do this,
*.rpm
, and useyum
to install it.Prodigal
Instead of downloading the pre-compiled executable, try to clone the repository and compile/install it yourself.
Prokka
Again, instead of using conda, you probably will learn more by installing it from scratch.
You want to use the Centos/Fedora/RHEL section in the installing guide.
sudo cpanm Bio::Perl
This step will fail.which might be a good exercise (might be painful) to learn to how to resolve this type of issue.
The text was updated successfully, but these errors were encountered: