I am reading this paper on protein fold classification and am particularly interested in their formulation of the profile-based composition vector (PCV). I downloaded an arbitrary set of proteins from PDB, hoping that I could construct a PCV for one of the proteins in that set.
Given a query protein sequence query.faa and a database of protein sequences db.faa, how can I generate a PSI-BLAST profile for query.faa? I have looked at the help statement for the psiblast program distributed with NCBI BLAST+ 2.2.25, but I don't see any relevant options.
I had originally tried the -out_ascii_pssm option for psiblast program, but no profile file wasn't created. I wasn't sure if PSSM and profile were referring to the same thing.
I had originally tried the
-out_ascii_pssm
option forpsiblast
program, but no profile file wasn't created. I wasn't sure if PSSM and profile were referring to the same thing.i just tried this it worked: psiblast -db pdbaa -out_pssm my_protein.ckp -evalue 0.01 -query my_protein -out_ascii_pssm ascii_mtx_file -out output_file -num_iterations 3
i think "-num_iterations" has to be 2 or more... (i haven't tested it though)
Ahh, I did not set the
-num_iterations
option. I'll give that a shot.It worked! If you edit your answer to include a summary of your comments, I will accept it as the correct answer.
How do I get one of the older versions?
if ask a new question: open it as new, not as a comment: anyways check here: ftp://ftp.ncbi.nih.gov/blast/executables/release/
Ok opened a new question. Thank you.