-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanPageSkeleton.pl
executable file
·79 lines (42 loc) · 1.51 KB
/
manPageSkeleton.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
#!/usr/bin/perl
use strict;
use Getopt::Long;
use Pod::Usage;
if (!defined($ARGV[0])) {
exec( 'perldoc', $0 );
}
=head1 NAME
Tha pipah
=head1 SYNOPSIS
Main.pl [-min int] [-max int] [-g file] [-h int] [-p directory] [-gs directory] [-a directory] [-o directory] [-gap int]
=head1 DESCRIPTION
-
=head1 OPTIONS
=head2 -min, -minSpeciesPerLine
Minimum species per ortholog group in the ortholog file.
=head2 -max, -maxProteinsPerSpecies
Maximum proteins per species.
=head2 -g, -groupsfile
File that contains all the orthologs from OrthoMCL.
=head2 -p, -proteoms
Proteom fasta file directory. One file for each species.
=head2 -gs, -genomes
Genome fasta file directory. One file for each species.
=head2 -a, -annotations
Annotation file directory (.gbk), One file for each species.
=head2 -o, -outname
Existing output folder for multiple alignments.
=head2 -h, -specieHeader_pos
Position of the specie identifier in the fasta headers. For instance, in the example below the
>gi|58038491|ref|NC_006677.1| Gluconobacter oxydans
^
=head2 -gap, -gapLength
Text
=head1 FILES
=head1 REQUIREMENTS
-
=head1 EXAMPLES
perl Main.pl -min 4 -max 1 -g groups.txt -p ./t/test_data/proteome_data/NCBI-proteoms/ -gs t/test_data/genome_data/NCBI-genomes/ -a t/test_data/genome_data/NCBI-annotation/ -o /home/simon/projects/pipan/results/2013-07-06_paralog_bugFix/test_res_max1/
=head1 AUTHOR
Simon Forsberg, Joakim Karlsson, Bjorn Viklund and Matilda Aslin
=cut