-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathINSTALL
More file actions
65 lines (46 loc) · 1.49 KB
/
INSTALL
File metadata and controls
65 lines (46 loc) · 1.49 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
61
62
63
64
65
# Installation instructions for Get FAST{A,Q} Info
## Install from bioconda
### Prerequisites
Requires a local [conda (mamba) installation](https://github.com/conda-forge/miniforge).
### Install
$ mamba install -c bioconda get_fasta_info
# Or to create a new environment
$ mamba create -c bioconda --name myenvname get_fasta_info
## Building from Source
### Prerequisites
GCC, Make, zlib library (development files). Depending on how you choose to
install (see examples below), you may also need CMake Autoconf and Automake.
On a Debian based system, they can be installed by
$ sudo apt install gcc make cmake autoconf automake zlib1g-dev
### Build using CMake
$ git clone https://github.com/nylander/get_fasta_info.git
$ cd get_fasta_info
$ mkdir build
$ cd build
$ cmake ..
$ make
$ sudo make install
# Alt.
$ cmake --install . --prefix $HOME
### Build using Autoconf and Automake
$ git clone https://github.com/nylander/get_fasta_info.git
$ cd get_fasta_info
$ ./autogen.sh
$ ./configure
$ make
$ sudo make install
# Alt.
$ ./configure --prefix=$HOME
$ make
$ make install
### Download distribution files and compile locally
Download a release source code (zip or tar.gz from Assets,
<https://github.com/nylander/get_fasta_info/releases>), and uncompress.
From inside the decompressed folder, run:
$ ./configure
$ make
$ sudo make install
# Alt.
$ ./configure --prefix=$HOME
$ make
$ make install