Skip to content

Instantly share code, notes, and snippets.

@photocyte
Last active January 31, 2017 23:18
Show Gist options
  • Save photocyte/554263aba6355bdd697652539c1a7c86 to your computer and use it in GitHub Desktop.
Save photocyte/554263aba6355bdd697652539c1a7c86 to your computer and use it in GitHub Desktop.
##Total hits
cat full_table_*.tsv | grep -v "Missing" | grep -v "#" | cut -f 3 | sort | uniq -c
##Hits broken down by complete/fragmented/duplicated status
cat full_table_*.tsv | grep -v "Missing" | grep -v "#" | sort -k 2,3 | cut -f 2,3 | uniq -c
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment