-
Notifications
You must be signed in to change notification settings - Fork 27
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
Missing headings blast_rec #33
Comments
Hi @ireneortega I am not 100% sure what you are referring to when asking about headings in When you run the example: orthologr::dNdS(query_file = system.file('seqs/ortho_thal_cds.fasta', package = 'orthologr'),
subject_file = system.file('seqs/ortho_lyra_cds.fasta', package = 'orthologr'),
delete_corrupt_cds = TRUE, # coding sequences that cannot be divided by 3 (triplets) will be removed
ortho_detection = "RBH", # perform BLAST best reciprocal hit orthology inference
aa_aln_type = "pairwise", # perform pairwise global alignments of AA seqs
aa_aln_tool = "NW", # using Needleman-Wunsch
codon_aln_tool = "pal2nal", # perform codon alignments using the tool Pal2Nal
dnds_est.method = "Comeron", # use Comeron's method for dN/dS inference
comp_cores = 1 ) And then check the I hope this helps you to troubleshoot on your side. Cheers, |
Ok, but I am referring to the heading of the BLAST output files that are generated when running:
The heading only appear if I save the output of the function blast_rec to directory. |
Could you construct a small example using the system file datasets Cheers, |
Ok, now I understand your question:
Yes, the column names returned by My confusion stems from the fact that you asked about headers in the I hope this clarifies everything. Cheers, |
Yes, this is what I meant. Thanks. Maybe it would be a good idea if you add the name of columns in both output files, just in case other user encounters the same issue. |
Since the BLAST output format -6 is defined without header, I prefer to leave it this way for the default option, but I could add a new argument that allows you to export the column names as well. In addition, I can also document the columns which are a standard format for all BLAST hit tables. |
When using
blast_rec
, headings in blastresult{query}.fasta_ and blastresult{subject}.fasta_ are not included. I suppose they are the same as output from blast_rec. Right?The text was updated successfully, but these errors were encountered: