This is a test version of Biostars. For the public version, visit https://www.biostars.org.
How can I do blast of cDNA library in single command, and stored the top 10 result in single file

I have data from cDNA library. I wanted to do blast the entire library against protein database. Is there any possibiility to do blast the entire library in single run and stored the result information in separate file?

blast sequencing

2 answers

If you use stand-alone blast, it is a simple matter of storing all queries in a single FASTA file to use as the query input and either using the remote option or downloading the relevant database to run BLAST.

blastx -db proteindb -out out.blast < input.fa

I like how you cut to the chase

Log in to answer this question.