forked from gpertea/stringtie
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREADME
More file actions
44 lines (29 loc) · 1.37 KB
/
README
File metadata and controls
44 lines (29 loc) · 1.37 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
Obtaining and installing StringTie
----------------------------------
The current version of StringTie can be downloaded from
http://ccb.jhu.edu/software/stringtie
In order to build StringTie from the source package,
the following steps should be taken:
* Unpack the downloaded StringTie source archive in a directory of your choice, e.g.:
cd ~/src/
tar xvfz ~/Downloads/stringtie-V.V.V.tar.gz
A directory called stringtie-V.V.V (where V.V.V is the current
numeric version of the program) will be created in the current directory.
* Change to that directory and build the stringtie executable:
cd stringtie-V.V.V
make release
Note that simply running `make` will produce an executable which is more
suitable for debugging and runtime checking but which can be significantly
slower than the optimized version which is obtained by using the
`make release` command.
Running StringTie
-----------------
Run stringtie from the command line like this:
stringtie [options] <aligned_reads.bam>
The main input of the program is a SAMtools BAM file with RNA-Seq alignments
sorted by genomic location (for example the `accepted_hits.bam` file produced
by TopHat).
A list of parameters and options for the program can be obtained by running
the program with only the -h or --help option.
More detailed usage instructions can be found on the StringTie website:
http://ccb.jhu.edu/software/stringtie