- 论坛徽章:
- 0
|
- #!/usr/bin/perl
- $xfile = $ARGV[0];
- $pri3input = $xfile.".pri3input";
- open (INPUT,$xfile);
- open (OUTPUT, ">;>;$pri3input");
- $seq = "";
- while ($line = <INPUT>;){
- chomp ($line);
- $line =~ s/\r//;
- if ($line =~ m/^>;/){
-
- $line =~ m/^>;(\S+)/;
- $seq_id = $1;
- if ($seq_id =~ /\|/){
- $seq_id =~ s/\|/_/g;
- }
- # print "$seq_id\n";
- $line =~ /(\d+)\sbp/g;
- $extra_num = $1;
-
- $line =~ /(\d+)\.\.(\d+)/g;
- $region = $2 - $1 + 1;
- # print "$region\n";
-
- }elsif($line ne ""){
- $line = uc($line);
- $seq = "$seq"."$line";
- if ($seq =~ /\s/){
- $seq =~ s/\s//g;
- }
- # print "$seq\n";
- }else{
- }
- print OUTPUT "$seq_id\n";
- print OUTPUT "$extra_num\n";
- print OUTPUT "$region\n";
- print OUTPUT "$seq\n";
- }
- close INPUT;
- close OUTPUT;
复制代码 |
|