We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
List scaffolds in descending order of their number of genes (MAKER consensus).
NOTE: composed in zsh
for i in *; do awk '{print $1, $2, $3}' $i | grep 'maker gene'; done | uniq -c | sort -nr | awk '{print $1, $2}'> ~/summary.txt
SRA to BAM: https://www.biostars.org/p/92747/#92751