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

..03-May-2022-

ext/H04-Nov-2019-82,26262,756

src/H03-May-2022-13,97710,338

test/H03-May-2022-4135

unit_tests/H03-May-2022-88,61188,502

.gitignoreH A D04-Nov-2019246 2420

.ycm_extra_conf.pyH A D04-Nov-20196.5 KiB203115

INSTALL.mdH A D04-Nov-20191.2 KiB5942

README.mdH A D04-Nov-20192.7 KiB4933

gen_release.shH A D04-Nov-2019428 3221

README.md

1# kallisto
2
3__kallisto__ is a program for quantifying abundances of transcripts from
4RNA-Seq data, or more generally of target sequences using high-throughput
5sequencing reads. It is based on the novel idea of _pseudoalignment_ for
6rapidly determining the compatibility of reads with targets, without the need
7for alignment. On benchmarks with standard RNA-Seq data, __kallisto__ can
8quantify 30 million human bulk RNA-seq reads in less than 3  minutes on a Mac desktop
9computer using only the read sequences and a transcriptome index that
10itself takes than 10 minutes to build. Pseudoalignment of reads
11preserves the key information needed for quantification, and __kallisto__
12is therefore not only fast, but also comparably accurate to other existing
13quantification tools. In fact, because the pseudoalignment procedure is
14robust to errors in the reads, in many benchmarks __kallisto__
15significantly outperforms existing tools. The __kallisto__ algorithms are described in more detail in:
16
17NL Bray, H Pimentel, P Melsted and L Pachter, [Near optimal probabilistic RNA-seq quantification](http://www.nature.com/nbt/journal/v34/n5/abs/nbt.3519.html), Nature Biotechnology __34__, p 525--527 (2016).
18
19Scripts reproducing all the results of the paper are available [here](https://github.com/pachterlab/kallisto_paper_analysis).
20
21__kallisto__ quantified bulk RNA-Seq can be analyzed with [__sleuth__](https://github.com/pachterlab/sleuth/).
22
23__kallisto__ can be used together with [__bustools__](https://bustools.github.io/) to pre-process single-cell RNA-seq data. See the [kallistobus.tools](https://www.kallistobus.tools/) website for instructions.
24
25## Manual
26
27Please visit http://pachterlab.github.io/kallisto/manual.html for the manual.
28
29## License
30
31__kallisto__ is distributed under the BSD-2 license. The license is distributed with __kallisto__ in the file `license.txt`, which is also viewable [here](https://pachterlab.github.io/kallisto/download). Please read the license before using __kallisto__.
32
33## Getting help
34
35For help running __kallisto__, please post to the [kallisto-and-applications Google Group](https://groups.google.com/forum/#!forum/kallisto-and-applications).
36
37## Reporting bugs
38
39Please report bugs to the [Github issues page](https://github.com/pachterlab/kallisto/issues)
40
41## Development and pull requests
42
43We typically develop on separate branches, then merge into devel once features
44have been sufficiently tested. `devel` is the latest, stable, development
45branch. `master` is used only for official releases and is considered to be
46stable. If you submit a pull request (thanks!) please make sure to request to
47merge into `devel` and NOT `master`. Merges usually only go into `master`, but
48not out.
49