Skip to content

Instantly share code, notes, and snippets.

@pmagwene
Created November 27, 2023 22:05
Show Gist options
  • Save pmagwene/1eccb95b612eb08eb71b8e5f7da31c92 to your computer and use it in GitHub Desktop.
Save pmagwene/1eccb95b612eb08eb71b8e5f7da31c92 to your computer and use it in GitHub Desktop.
Awk example from class
BEGIN {
FS="\t"
OFS=","
genect = 0
}
# filter the comments
$0 ~ /^#/ { next }
{
ftrcount[$3] += 1
# print $3, ftrcount[$3]
}
END {
for (ftr in ftrcount)
print ftr, ftrcount[ftr]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment