]> git.donarmstrong.com Git - fastq-tools.git/blob - README
a few fixes, and a program to tabulate quality scores
[fastq-tools.git] / README
1
2 fastq-tools
3 ===========
4
5 This package provides a number of small and efficient programs to perform common
6 tasks with high throughput sequencing data in the FASTQ format. All of the
7 programs work with typical FASTQ files as well as gzipped FASTQ files.
8
9
10 index
11 -----
12
13 The following programs are provided. See the individual man pages for more
14 information.
15
16
17 *fastq-grep* : match sequences against regular expressions
18
19 *fastq-kmers* : count k-mer occurrences
20
21 *fastq-match* : (smith-waterman) local sequence alignment
22
23 *fastq-uniq* : count duplicate reads
24
25
26 install
27 -------
28
29 On most systems, this is a simple `./configure && make install`.
30
31 The only external dependencies are PCRE (http://www.pcre.org/) and zlib
32 (http://zlib.net/).
33
34
35 contribute
36 ----------
37
38 If you have written any small but useful programs to deal with FASTQ files,
39 please consider submitting them for inclusion in fastq-tools. Check out the
40 Github page (https://github.com/dcjones/fastq-tools) or send mail to the author
41 (dcjones@cs.washington.edu).
42
43
44 copying
45 -------
46
47 This package is provided under a permissive MIT-style license. In particular:
48
49 Copyright (C) 2011 by Daniel C. Jones <dcjones@cs.washington.edu>
50
51 Permission is hereby granted, free of charge, to any person obtaining a copy
52 of this software and associated documentation files (the "Software"), to deal
53 in the Software without restriction, including without limitation the rights
54 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
55 copies of the Software, and to permit persons to whom the Software is
56 furnished to do so, subject to the following conditions:
57
58 The above copyright notice and this permission notice shall be included in
59 all copies or substantial portions of the Software.
60
61 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
62 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
63 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
64 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
65 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
66 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
67 THE SOFTWARE.
68
69