0
|
1 #!/usr/bin/perl
|
|
2
|
|
3 use strict;
|
|
4 use Getopt::Long;
|
|
5 use Bio::SeqIO;
|
|
6 use File::Basename;
|
|
7 my $dirname = dirname(__FILE__);
|
|
8 use Cwd qw(cwd);
|
|
9 my $dir = cwd;
|
|
10
|
|
11 my $usage = qq~Usage:$0 <args> [<opts>]
|
|
12
|
|
13 where <args> are:
|
|
14
|
|
15 -g, --genes <list of gene fasta files. Comma separated list>
|
|
16 -p, --proteins <list of protein fasta files. Comma separated list>
|
2
|
17 -l, --list <list of samples in the same order. Comma separated list>
|
0
|
18 -o, --out <output name>
|
|
19 ~;
|
|
20 $usage .= "\n";
|
|
21
|
|
22 my ($genes,$proteins,$out,$order);
|
|
23
|
|
24 GetOptions(
|
|
25 "genes=s" => \$genes,
|
|
26 "proteins=s" => \$proteins,
|
|
27 "out=s" => \$out,
|
2
|
28 "list=s" => \$order
|
0
|
29 );
|
|
30
|
|
31
|
|
32 die $usage
|
|
33 if ( !$proteins || !$genes || !$out || !$order);
|
|
34
|
|
35 my @names = split(",",$order);
|
|
36 my @list;
|
|
37 mkdir("tmpdir$$");
|
|
38 my @gene_files = split(/,/,$genes);
|
|
39 my $n = 0;
|
|
40 foreach my $gene_file(@gene_files){
|
1
|
41 my $particule = $names[$n];
|
0
|
42 system("cp $gene_file tmpdir$$/$particule.nuc");
|
|
43 $n++;
|
|
44 }
|
|
45 $n = 0;
|
|
46 my @protein_files = split(/,/,$proteins);
|
|
47 foreach my $protein_file(@protein_files){
|
|
48 my $particule = $names[0];
|
|
49 system("cp $protein_file tmpdir$$/$particule.pep");
|
|
50 open(F,"$protein_file");
|
|
51 open(F2,">tmpdir$$/$particule.function");
|
|
52 while(<F>){
|
|
53 if (/>(.*)/){
|
|
54 print F2 "$1 - unknown\n";
|
|
55 }
|
|
56 }
|
|
57 close(F);
|
|
58 close(F2);
|
|
59 $n++;
|
|
60 }
|
|
61
|
|
62 #chdir("$dirname/PGAP-1.2.1");
|
|
63 my $cmd = "perl $dirname/PGAP-1.2.1/PGAP.pl --input tmpdir$$ --output outdir --cluster --pangenome --variation --evolution --function --strains ".join("+",@list)." --method GF";
|
|
64 system($cmd);
|
|
65 system("cp -rf outdir/1.Orthologs_Cluster.txt $out");
|