-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathINSTALL
More file actions
60 lines (43 loc) · 1.52 KB
/
INSTALL
File metadata and controls
60 lines (43 loc) · 1.52 KB
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
===================
System Requirements
===================
Python 2.7+
===========
chimerascan requires python version 2.7 or higher (http://python.org)
Pysam
=====
chimerascan requires the Pysam library for interacting with files
in the SAM format. Please visit (http://code.google.com/p/pysam/) for
more information on installing this tool.
Bowtie2
=======
You must have a working bowtie2 installation to run chimerascan. The
current distribution of chimerascan has been tested with bowtie2 beta 6.
Please visit (http://bowtie-bio.sourceforge.net/bowtie2/index.shtml) for
instructions on downloading and installing bowtie2.
Cython (optional)
=================
Several C/C++ extension modules in chimerascan are built in Cython.
To build Cython from source you must download and install Cython from
(http://cython.org). The setup-cython.py script is provided to compile
the Cython code (.pyx) files into C code. This should not be necessary
for most users.
Compilation
===========
Unpack the distribution and enter the chimerascan directory. Type
python setup.py build
to compile.
Installation
============
Type
python setup.py install
to install it within the site-packages directory of your python
distribution. Type
python setup.py install --help
for more options.
Architecture specific options
=============================
chimerascan has been tested on the following platforms:
* 64-bit RedHat Enterprise Linux systems using python 2.7+
* Mac OS/X Snow Leopard using python 2.7+
* Testing on other architectures is pending.