File: vcf_strip_extra_headers

package info (click to toggle)
libvcflib 1.0.3%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 49,628 kB
  • sloc: cpp: 39,244; perl: 474; python: 329; ruby: 285; sh: 247; ansic: 198; makefile: 131; javascript: 94; lisp: 57
file content (19 lines) | stat: -rwxr-xr-x 280 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/env perl
# Strip headers

my $seen_non_header = 0;

while (<STDIN>) {
    if (! $seen_non_header) {
        if (/^#/) {
        } else {
            $seen_non_header = 1;
        }
        print;
    } else {
        if (! /^#/) {
            print;
        }
    }

}