I'm trying to get assembly stat.
As part of that, I would like to evaluate the assembly quality by running BLAST to the fasta file output by Trinity.
I got the result by blastx, but it is difficult to evaluate the result.
Is there any way to evaluate the result of each sequence at once?
The BIRCH system presents BLAST output in 3 different ways: the HTML report, using BlastViewer, and in a tabular form using BioLegato, which is shown here:
. The table can be sorted on any combination of columns, ascending or descending, so in this case you'd want to sort on column C, the species names. BIRCH has an extensive collection of programs for genomics tasks, including by the way Trinity. You can see these in action on the BIRCH YouTube channel.
To easily generate the count table, you could do the following. Use tabular output in local blast: -outfmt "6 staxid ssciname" then count occurrences by piping into | sort | uniq -c like so:
The BIRCH system presents BLAST output in 3 different ways: the HTML report, using BlastViewer, and in a tabular form using BioLegato, which is shown here: . The table can be sorted on any combination of columns, ascending or descending, so in this case you'd want to sort on column C, the species names. BIRCH has an extensive collection of programs for genomics tasks, including by the way Trinity. You can see these in action on the BIRCH YouTube channel.