File: ca_ikki_v5.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 (228 lines) | stat: -rwxr-xr-x 5,690 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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
#!/usr/bin/perl
use strict;
use warnings;
use Getopt::Long;

my $DEVEL;

my $from=0;
my $to=1;
my $fastqdir="./";
my $ca_path="";
my $out_dir="CA";
#my $tmp_dir=$out_dir;
my $sprai_path="";
my $coverage=20;
my $raw_fastq="";

my @msg=(
"USAGE: <this> <asm.spec> estimated_genome_size",
#"[-from integer]",
#"[-to integer ]",
"[-d directory in which fin.idfq.gzs exist (default: $fastqdir)]",
"[-ca_path /path/to/your/wgs/Linux-amd64/bin (default: $ca_path)]",
#"[-tmp_dir temporary directory (default: $tmp_dir)]",
"[-out_dir output directory (default: $out_dir)]",
"[-sprai_path the path to get_top_20x_fa.pl installed (default: $sprai_path)]",
"[-coverage int : use longer than N(coverage) reads for assembly (default: $coverage)]",
"",
"[-raw_fastq in.fq : use all reads in in.fq (default: off)]",
);

GetOptions(
  'from=i' => \$from,
  'to=i' => \$to,
  'd=s' => \$fastqdir,
  'devel' => \$DEVEL,
  'ca_path=s'=>\$ca_path,
#  'tmp_dir=s'=>\$tmp_dir,
  'out_dir=s'=>\$out_dir,
  'coverage=i'=>\$coverage,
  'raw_fastq=s'=>\$raw_fastq,
  'sprai_path=s'=>\$sprai_path
  );

if(@ARGV != 2){
  my $tmp = join "\n\t",@msg;
  die "$tmp\n";
  #die "USAGE: <this> <asm.spec> estimated_genome_size [-from integer -to integer]\n\t[-d directory in which fin.fq.gzs exist]\n\t[-ca_path /path/to/your/wgs/Linux-amd64/bin]\n";
}

my $spec = $ARGV[0];
printf STDERR ("%s is given\n",$spec);
my $estimated_genome_size = $ARGV[1];
if($estimated_genome_size <= 0){
  die "estimated_genome_size must be > 0\n";
}

printf STDERR ("#>- params -<#\n");
printf STDERR ("spec\t%s\n",$spec);
printf STDERR ("estimated_genome_size\t%s\n",$estimated_genome_size);
#printf STDERR ("from\t%s\n",$from);
#printf STDERR ("to\t%s\n",$to);
printf STDERR ("fastq_dir\t%s\n",$fastqdir);
#printf STDERR ("tmp_dir\t%s\n",$tmp_dir);
printf STDERR ("out_dir\t%s\n",$out_dir);
printf STDERR ("sprai_path\t%s\n",$sprai_path);

if($DEVEL){
  printf STDERR ("development mode\t%s\n","true");
}
if($ca_path){
  printf STDERR ("ca_path\t%s\n",$ca_path);
}
if($coverage){
  printf STDERR ("coverage\t%s\n",$coverage);
}
if($raw_fastq){
  printf STDERR ("raw_fastq\t%s\n",$raw_fastq);
}
printf STDERR ("#>- params -<#\n");
#exit;

my $PWD=`pwd`;
chomp $PWD;

my $now = `date +%Y%m%d_%H%M%S`;
chomp $now;

if($out_dir !~ /^\//){
  $out_dir = "$PWD/$out_dir";
}

if($out_dir =~ /\/$/){
  chop $out_dir;
}
my @out_dirs=();
my @p2=();
for(my $i=$from+1; $i<=$to; ++$i){
  my $tmp;
  my $now_used=0;
  if($to-$from > 1){
    $tmp = sprintf("%s_%02d_%s",$out_dir,$i,$now);
  }
  else{
    $tmp = sprintf("%s",$out_dir);
  }
  if(-d $tmp){
    my $now = `date +%Y%m%d_%H%M%S`;
    chomp $now;
    $tmp = sprintf("%s_%02d_%s",$out_dir,$i,$now);
    if($to-$from>1){
      redo;
    }
    $now_used=1;
  }
  mkdir "$tmp" or die "cannot mkdir $tmp: $!\n";
  $out_dirs[$i] = $tmp;
  my @foo = split /\//,$out_dirs[$i];
  if($to-$from>1 || $now_used){
    $p2[$i] = $foo[$#foo];
  }
  else{
    my $now = `date +%Y%m%d_%H%M%S`;
    chomp $now;
    $p2[$i] = sprintf("%s_%02d_%s",$foo[$#foo],$from+1,$now);
  }
}

=pod
if($tmp_dir !~ /^\//){
  $tmp_dir = "$PWD/$tmp_dir";
}
if(-d "$tmp_dir"){
  my $tmp = "${tmp_dir}_$now";
  mkdir "$tmp" or die "cannot mkdir $tmp: $!\n";
}
else{
  my $tmp = "${tmp_dir}";
  mkdir "$tmp" or die "cannot mkdir $tmp: $!\n";
}
=cut

#$tmp_dir = $out_dir;

my $bashcommand="";

my $suffix = "top20x";


if(!$raw_fastq){
  #printf STDERR ("start idfq2fq\n");
  for(my $i=$from+1; $i<=$to; ++$i){
    my $prefix=sprintf("c%02d.fin",$i);
    my $PG1 = "get_top_20x_fa.pl";
    if($sprai_path){
      $PG1 = "$sprai_path/$PG1";
    }
    my $uuid = $now;
    #my $uuid = `uuidgen`;
    chomp $uuid;
    $bashcommand .= "gzip -d -c $fastqdir/$prefix.idfq.gz > $PWD/$uuid.tmp && $PG1 $PWD/$uuid.tmp -l -c $coverage -g $estimated_genome_size -q > $out_dirs[$i]/$prefix.$suffix.fq && rm $PWD/$uuid.tmp &\n";
  }

  `
    $bashcommand
    wait
  `;
  #printf STDERR ("done idfq2fq\n");
}
else{
  if($to-$from != 1){
    printf STDERR ("strange 'from' and 'to'.\n");
    printf STDERR ("from - to must be one if you specify -raw_fastq.\n");
    exit(1);
  }
  if($raw_fastq !~ /^\//){
    $raw_fastq = "$PWD/$raw_fastq";
  }
  my $prefix=sprintf("c%02d.fin",$from+1);
  `ln -s $raw_fastq $out_dirs[$from+1]/$prefix.$suffix.fq`;
}

#printf STDERR ("start fastqToCA\n");
for(my $i=$from+1; $i<=$to; ++$i){
  my $prefix=sprintf("c%02d.fin",$i);
  my $fastqToCA = "fastqToCA";
  if($ca_path){
    $fastqToCA = "$ca_path/$fastqToCA";
  }
  `$fastqToCA -libraryname foo -technology pacbio-corrected -reads $out_dirs[$i]/$prefix.$suffix.fq > $out_dirs[$i]/$prefix.$suffix.frg`;
}
#printf STDERR ("done fastqToCA\n");

#printf STDERR ("start CA (stopAfter=unitigger)\n");

my $now_used=0;

my $runCA="runCA";
if($ca_path){
  $runCA = "$ca_path/$runCA";
}

=pod
for(my $i=$from+1; $i<=$to; ++$i){
  my $prefix=sprintf("c%02d.fin",$i);
  `$runCA stopAfter=unitigger -dir $out_dirs[$i] -p asm_$p2[$i] -s $spec $out_dirs[$i]/$prefix.$suffix.frg 2>> $out_dirs[$i]/do_$prefix.$suffix.$now.log`;
}
#printf STDERR ("done CA (stopAfter=unitigger)\n");

#printf STDERR ("start CA (the rest)\n");
$bashcommand="";
for(my $i=$from+1; $i<=$to; ++$i){
  my $prefix=sprintf("c%02d.fin",$i);
  $bashcommand .= "($runCA -dir $out_dirs[$i] -p asm_$p2[$i] -s $spec $out_dirs[$i]/$prefix.$suffix.frg 2>> $out_dirs[$i]/do_$prefix.$suffix.$now.log) &\n";
}
`
  $bashcommand
`;
=cut
$bashcommand="";
for(my $i=$from+1; $i<=$to; ++$i){
  my $prefix=sprintf("c%02d.fin",$i);
  $bashcommand .= "$runCA -dir $out_dirs[$i] -p asm_$p2[$i] -s $spec $out_dirs[$i]/$prefix.$suffix.frg 2>> $out_dirs[$i]/do_$prefix.$suffix.$now.log &\n";
}
`
  $bashcommand
  wait
`;