-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathget_update_sra_ENA.pl
58 lines (53 loc) · 1.51 KB
/
get_update_sra_ENA.pl
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
#!/usr/bin/perl
use warnings;
use strict;
use Getopt::Long;
use Cwd 'abs_path';
my $cwd = abs_path;
my ($file, $dir, $out1, $out2);
GetOptions(
"f|file:s" => \$file,
"d|dir:s" => \$dir,
"o1|out1:s" => \$out1,
"o2|out2:s" => \$out2
);
&usage if(!defined $out2);
open(IN, $file) or die "can't open $file";
open(OT1, "> $out1") or die "can't open $out1\n";
open(OT2, "> $out2") or die "can't open $out2\n";
while(<IN>){
chomp;
my @tmp = split("\t", $_);
# download failed file
my $download_dir = join("/", $dir, "sra", $tmp[0]);
my $failed_file = join(".", $tmp[0], "partial");
my $succeeded_file = join("/", $download_dir, $tmp[0]);
my $failed_filepath = join("/", $download_dir, $failed_file);
my $failed_dir = join("/", $dir, "sra", $tmp[0]);
unless(-e $succeeded_file){
print OT2 "$tmp[0]\n";
if(-e $failed_filepath){
print OT1 "$tmp[0]\t$failed_filepath\t$failed_dir\n";
}
if(-e $download_dir){
unless(-e $failed_filepath){
print OT1 "$tmp[0]\t$download_dir\t$download_dir\n";
}
}
}
}
close(IN);
close(OT1);
close(OT2);
sub usage{
print <<USAGE;
usage:
perl $0 -f <file> -d <dir> -o1 <out1> -o2 <out2>
options:
-f|file :[essential] the sra accession list.
-d|dir :[essential] the directory of download sra.
-o1|out1 :[essential] the download failed acession list.
-o2|out2 :[essential] the update sra accession list.
USAGE
exit;
}