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

Document best use cases versus alternatives #25

Open
peterjc opened this issue Jul 28, 2023 · 1 comment
Open

Document best use cases versus alternatives #25

peterjc opened this issue Jul 28, 2023 · 1 comment

Comments

@peterjc
Copy link

peterjc commented Jul 28, 2023

Would other people find it useful to have a short section in the README file about alternative tools and pro-and-cons? e.g.

I'm currently using ncbi-acc-download in a simple batch script, but finding this isn't nearly as fast as I had hoped with thousands of sequences:

#!/bin/bash
set -euo pipefail

for ACC in `cat acc_list.seq` ; do
    echo $ACC;
    if [ -f $ACC.fa ]; then
	echo Done;
    else
	ncbi-acc-download -e all -F fasta -v $ACC;
    fi;
done
echo "All Done"

Even if not worth adding to the README, a brief discussion here on this issue would be informative. Thank you!

@kblin
Copy link
Owner

kblin commented Aug 2, 2024

I'm not really in a position to write this comparison, because I don't use any of those tools (apart from ncbi-genome-download)

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