Skip to content
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

BUSCO issue #41

Open
butterflyology opened this issue Dec 15, 2015 · 2 comments
Open

BUSCO issue #41

butterflyology opened this issue Dec 15, 2015 · 2 comments

Comments

@butterflyology
Copy link

BUSCO uses rm to remove the .temp files it generates. The issue with this is that rm can only delete up to 64,000 files. If you have more contigs than that, the program won't remove them.

I recommend adding

find . -name '*.temp' | xargs rm

to the script to remove these temporary files.

@camillescott
Copy link
Member

Are you talking about in the actual BUSCO script? If so, that's not really under my control, though this is a good reason why they should be consider putting the code on github :) I'm currently using shutil.rmtree() to clean up folders -- do you know off the top of your head if it has that limit?

@butterflyology
Copy link
Author

It is in the actual BUSCO script but my pleas to the Zbodnov lab have gone unanswered. I thought for the sake of sanity that dammit could fix this. I'm not aware of the limits of the python modules but I bet it is better than the present implementation in BUSCO.

@camillescott camillescott added this to the 1.0 milestone Jun 8, 2016
@camillescott camillescott removed this from the 1.0 milestone Oct 20, 2016
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants