-
Notifications
You must be signed in to change notification settings - Fork 1
/
INSTALL
40 lines (25 loc) · 1 KB
/
INSTALL
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
Bam2mpg package
Predict variants and call genotypes, with MPG scores, from a single sample's BAM file of
next-generation read alignments.
INSTALLATION:
In addition to the software included in this package, the user must have a working copy of
samtools installed and in ones path (version 0.1.16 or greater), available at
http://samtools.sourceforge.net.
To install bam2mpg system-wide (root permissions required):
perl Build.PL
./Build
./Build test
./Build install
For local user installation:
perl Build.PL --install_base $HOME
./Build
./Build test
./Build install
Then, to access the installed scripts, $HOME/bin must be in your path:
export PATH=$HOME/bin:$PATH
And $HOME/lib/perl5 must be in your PERL5LIB path:
export PERL5LIB=$HOME/lib/perl5:$PERL5LIB
The above export commands can be added to your .profile or .bash_profile
in order to make them available each time you log in.
USAGE:
Run perldoc bam2mpg for complete documentation.