Join GitHub today
GitHub is home to over 20 million developers working together to host and review code, manage projects, and build software together.
Do fast bowtie with option -c #50
Comments
|
I think you're stuck putting all your queries in a file and running them all at once, as you suggest. I understand that might not fit your use case. The way you're running |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
OrsonMM commentedMay 10, 2017
Hello
I tried to use these command like a subrutine in my python script
seq1 = CATGTAGCTAG
subprocess.call(bowtie -c index.bwt seq1)
But it takes around 3s. for each search, And I have a lot of seqs. And I need do fast. Exist a possible do more efficient in my code.
Pd: I now that if I use a file that contain all my seqs, bowtie is fast and efficient.
Saludos.