File: partition_fa.pl

package info (click to toggle)
sprai 0.9.9.23%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 2,560 kB
  • sloc: python: 11,877; perl: 4,406; ansic: 3,428; sh: 109; makefile: 70
file content (143 lines) | stat: -rwxr-xr-x 3,187 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
#!/usr/bin/perl
use strict;
use warnings;
use Getopt::Long;
#use Compress::Zlib;

#my $opt_n;
#GetOptions("n" => \$opt_n);

my $opt_prefix=`date +%Y%m%d%H%M%S`;
chomp $opt_prefix;
my $opt_gz;
my $opt_1origin=0;
my $opt_fq=0;

#print $opt_prefix,"\n";
#exit 1;
GetOptions(
  "p=s" => \$opt_prefix,
  "q" => \$opt_fq,
  "1origin"=>\$opt_1origin
);

my $ext="fa";
if($opt_fq){
  $ext = "fq";
}

#GetOptions("p=s" => \$opt_prefix, "z" => \$opt_gz);
$opt_gz=0;

if(@ARGV != 2){
  printf STDERR ("USAGE: <this> <in.fa> <int (number of partitions)>\n");
  printf STDERR ("\t[-p <prefix>: prefix to the outputs. default is yymmddhhmmss]\n");
  printf STDERR ("\t[-1origin: for file naming\n");
  printf STDERR ("\t[-q : regard input as in fastq]\n");
#  printf STDERR ("\t[-z: output gz compressed file instead of uncompressed fasta file]\n");
  #printf STDERR ("\t[-n (name: output only names , not sequences)\n");
  exit 1;
}

#printf("%s\n", $ARGV[0]);
#printf("%s\n", $ARGV[1]);
#exit 1;

my $in_fa = $ARGV[0];
chomp $in_fa;
#my $IN_FA;
#if($in_fa eq '-'){
#  open $IN_FA,"<",STDIN or die "cannot open $in_fa : $!\n";
#}
#else{
  open my $IN_FA,"<".$in_fa or die "cannot open $in_fa : $!\n";
#}

my $partitions = $ARGV[1];
if($partitions !~ /^\+?\d+$/){
  printf STDERR ("nth must be an integer\n");
  exit 1;
}

my @out;
for(my $i=0; $i<$partitions; ++$i){
  if($opt_gz){
#    $out[$i] = gzopen(sprintf("%s_%04d.fa.gz",$opt_prefix,$i),"wb") or die "cannot open output file:$!\n";
  }
  else{
    if($opt_1origin){
      open $out[$i],">",sprintf("%s_%04d.$ext",$opt_prefix,$i+1) or die "cannot open output file:$!\n";
    }
    else{
      open $out[$i],">",sprintf("%s_%04d.$ext",$opt_prefix,$i) or die "cannot open output file:$!\n";
    }
  }
}

my $counter=-1;

my $name = <$IN_FA>;

while(!eof($IN_FA)){
  ++$counter;
  chomp $name;
  my $tmp_name = $name;
  my $bases="";
  my $opts="";
  my $qvs="";
  if(!$opt_fq){
    while(!eof($IN_FA) && (($name = <$IN_FA>) !~ /^>/)){
      chomp $name;#bases
      $bases .= $name;
    }
  }
  else{
    while(!eof($IN_FA) && (($name = <$IN_FA>) !~ /^\+/)){
      chomp $name;#bases
      $bases .= $name;
    }
    chomp $name;
    $opts = $name;
    while(!eof($IN_FA) && (($name = <$IN_FA>) !~ /^\@/)){
      chomp $name;#qvs
      $qvs .= $name;
    }
    if(length($bases) != length($qvs)){
      printf STDERR ("|bases| != |qvs|: %d %d\n",length($bases),length($qvs));
      exit(1);
    }
  }
  #next if ($counter % $mod != $nth);
  my $fh = $out[$counter % $partitions];
  if($opt_gz){
#    $fh->gzwrite(sprintf("%s\n",$tmp_name));
#    $fh->gzwrite(sprintf("%s\n",$bases));
  }
  else{
    printf $fh ("%s\n",$tmp_name);
    printf $fh ("%s\n",$bases);
    if($opt_fq){
      printf $fh ("%s\n",$opts);
      printf $fh ("%s\n",$qvs);
    }
  }

  #printf $out[$counter % $partitions] ("%s\n",$tmp_name);
  #printf $out[$counter % $partitions] ("%s\n",$bases);
  #my $num=70;
  #my $loop = length($bases);
  #for(my $stt=0; $stt < $loop; $stt += $num){
  #  printf("%s\n",substr($bases,$stt,$num));
  #}
}

close $IN_FA;
for(my $i=0; $i<$partitions; ++$i){
  if($opt_gz){
#    $out[$i]->gzclose;
  }
  else{
    close $out[$i];
  }
}