Skip to content

Instantly share code, notes, and snippets.

@belmarca
Created April 8, 2022 20:16
Show Gist options
  • Save belmarca/72715ba502e9123165274722ca86bfb1 to your computer and use it in GitHub Desktop.
Save belmarca/72715ba502e9123165274722ca86bfb1 to your computer and use it in GitHub Desktop.
BEGIN {
FIELDWIDTHS="6 5 5 4 2 4 4 8 8 8 6 6"
}
{
if ($1 == "ATOM ")
{
if (($4 == " A") || ($4 == " G") || ($4 == " C") || ($4 == " U"))
{
print;
}
}
else
print;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment