forked from sebhtml/ray
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathINSTALL.txt
38 lines (22 loc) · 809 Bytes
/
INSTALL.txt
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
You need:
- A C++ compiler (C++ 1998 or later)
- An MPI implementation
- make
== Quickstart on GNU/Linux ==
On GNU/Linux, you can use GNU C++ (g++) and Open-MPI.
Then, type
make PREFIX=ray-build
make install
ls ray-build
mpiexec -n 1 ray-build/Ray -o test -p test_1.fastq test_2.fastq -k 31
== Options ==
You can provide compilation options to the Makefile.
MPICXX The path to the C++ compiler wrapper (usually called mpicxx)
PREFIX Where to install stuff
MAXKMERLENGTH maximum k-mer length, default is MAXKMERLENGTH=32
FORCE_PACKING save memory by not aligning addresses, default is FORCE_PACKING=n
ASSERT run assertions too, default is ASSERT=n
For other options, read the Makefile header.
== Working compilers ==
Anything that supports C++ 1998.
see Documentation/COMPILERS.txt