Skip to content
yeban edited this page Dec 5, 2014 · 2 revisions

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

Clone this wiki locally