File: vcffirstheader

package info (click to toggle)
libvcflib 1.0.2%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 49,732 kB
  • sloc: cpp: 39,194; perl: 474; python: 321; ruby: 285; sh: 247; ansic: 198; makefile: 125; javascript: 94; lisp: 55
file content (17 lines) | stat: -rwxr-xr-x 336 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/env python3
# Show first header
#
import sys

header=True
for line in sys.stdin:
    if line.startswith('##'):
        if header:
            print(line.strip())
        continue
    elif line.startswith('#'):
        if header:
           print(line.strip())
           header=False
        continue
    print(line.strip())