You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For newbies, who are not familiar with shell. Or not family with other blast tools or packages. If you want to generate pairwise blast links with online NCBI Blast (https://blast.ncbi.nlm.nih.gov/Blast.cgi), here are some tricks and codes that can make your life easier.
After pairwise blast with NCBI blast, download the hit table .csv, and read it. Change the colnames as
blast_name<-c("seq_id","seq_id2","identity","length","mismatches","gaps","start","end","start2","end2","evalue","bitscores")
Double-check that your seq_id and seq_id2 are correct and match with your seqs data.
Then you can use it to draw your links now.
The text was updated successfully, but these errors were encountered:
Thanks! As an alternative, you can also use gggenomes default names for blast tables. And if you need to swap your seq_id and seq_id2, you can use swap_query()
For newbies, who are not familiar with shell. Or not family with other blast tools or packages. If you want to generate pairwise blast links with online NCBI Blast (https://blast.ncbi.nlm.nih.gov/Blast.cgi), here are some tricks and codes that can make your life easier.
After pairwise blast with NCBI blast, download the hit table .csv, and read it. Change the colnames as
blast_name<-c("seq_id","seq_id2","identity","length","mismatches","gaps","start","end","start2","end2","evalue","bitscores")
Double-check that your seq_id and seq_id2 are correct and match with your seqs data.
Then you can use it to draw your links now.
The text was updated successfully, but these errors were encountered: