]> git.donarmstrong.com Git - dbsnp.git/blob - utils/import_seq_component_md.pl
c935a75076e9be9b1bba3c5f68a41a67f8c8abc8
[dbsnp.git] / utils / import_seq_component_md.pl
1 #!/usr/bin/perl
2
3 use warnings;
4 use strict;
5
6 while (<>) {
7     next if /^#/;
8     chomp;
9     my @row = split /\t/;
10     pop @row;
11     pop @row;
12     $row[6] =~ s/na/NULL/;
13     print join("\t",@row)."\n";
14 }