• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

config/H10-May-2019-2,2831,536

htslib/H03-May-2022-54,23736,669

scripts/H03-May-2022-2,7181,873

src/H10-May-2019-54,46237,181

tests/H10-May-2019-280192

ChangeLogH A D09-May-201985.5 KiB1,3991,285

INSTALLH A D24-Sep-20159.3 KiB237179

LICENSEH A D24-Sep-201534.3 KiB675553

Makefile.amH A D27-Feb-20194.6 KiB12199

Makefile.inH A D09-May-201961.6 KiB1,6821,524

READMEH A D24-Dec-20181 KiB4426

acinclude.m4H A D02-Oct-201613.5 KiB563446

aclocal.m4H A D09-May-201940 KiB1,1321,032

autogen.shH A D24-Sep-2015186 64

config.h.inH A D09-May-20193.5 KiB13692

configureH A D09-May-2019230.1 KiB8,3456,871

configure.acH A D09-May-20192.9 KiB10287

README

1The Stacks Pipeline
2-------------------
3
40. Prerequisites
5
6Stacks should build on any standard UNIX-like environment (Apple OS X, Linux,
7etc.) Stacks is an independent pipeline and can be run without any additional
8external software.
9
10If compiling with the standard GCC compiler, Stacks needs a version of the compiler
11newer than GCC 4.9.0.
12
131. Build the software. Stacks uses the standard autotools install:
14
15% tar xfvz stacks-x.xx.tar.gz
16% cd stacks-x.xx
17% ./configure
18
19You can change the root of the install location (/usr/local/ on most
20operating systems) by specifying the --prefix command line option to
21the configure script.
22
23% ./configure --prefix=/home/smith/local
24
25You can enable Sparsehash by adding the following options:
26
27% ./configure --enable-sparsehash
28
29% make
30
31You can speed up the build if you have more than one processor:
32
33% make -j 8
34
353. Install the software.
36
37% sudo make install
38
39A default Stacks install will install files in the following way:
40
41/usr/local/bin - stacks executables and perl scripts
42
43The pipeline is now ready to run.
44