https://github.com/Malfoy/BGREAT
Raw File
Tip revision: f68b9454bf0eb3ba694fd7930c03f72f5559dd8d authored by Antoine Limasset on 04 April 2017, 11:42:06 UTC
Update README.md
Tip revision: f68b945
noN.py
#!/usr/bin/env python
import sys

with open(sys.argv[1]) as infile:
    for line in infile:
        string = line.rstrip()
        if ">" in string:
            header=string
        elif not "N" in string:
            print header
            print string
back to top