File: README

package info (click to toggle)
seqan2 2.5.2-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 228,748 kB
  • sloc: cpp: 257,602; ansic: 91,967; python: 8,326; sh: 1,056; xml: 570; makefile: 229; awk: 51; javascript: 21
file content (71 lines) | stat: -rw-r--r-- 2,804 bytes parent folder | download | duplicates (9)
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
66
67
68
69
70
71
                                   FX Tools
                         NGS Data Manipluation Tools

                                 Version 0.2
                                 August, 2013

------------------------------------------------------------------------------
Table of Contents
------------------------------------------------------------------------------

  1. Overview
  2. Examples
  3. Reference and Contact

------------------------------------------------------------------------------
1. Overview
------------------------------------------------------------------------------

------------------------------------------------------------------------------
2. Examples
------------------------------------------------------------------------------

------------------------------------------------------------------------------
2.1 Help
------------------------------------------------------------------------------

You can get the manual for the tools by calling them with the --help command,
for example:

$ fx_bam_coverage --help

prints the help of fx_bam_coverage.

------------------------------------------------------------------------------
2.2 Coverage computation of SAM or BAM file
------------------------------------------------------------------------------

$ fx_bam_coverage

------------------------------------------------------------------------------
3. Reference and Contact
------------------------------------------------------------------------------

Send an email to the SeqAn mailing list:

    https://lists.fu-berlin.de/listinfo/seqan-dev

------------------------------------------------------------------------------
4. R Snippets
------------------------------------------------------------------------------

------------------------------------------------------------------------------
4.1. Conversion for Plotting with R
------------------------------------------------------------------------------

Converting the data.frame generated from the fx_fastq_stats TSV output into
a list that can be plotted using bxp(R).

    colnames(R) <- c("Column", "Count", "Minimal.Quality", "Maximal.Quality",
                     "Quality.Sum", "Quality.Mean", "1st.Quartile.Score",
                     "Median.Score", "3rd.Quartile.Score",
                     "Inter.Quality.Range", "Left.Whisker", "Right.Whisker",
                     "A.Count", "C.Count", "G.Count", "T.Count", "N.Count")
    stats <- t(data.matrix(R[c("Minimal.Quality", "1st.Quartile.Score",
                               "3rd.Quartile.Score", "Maximal.Quality")]))
    n <- R[, "Count"]
    conf <- t(data.matrix(R[c("Minimal.Quality", "Maximal.Quality")]))
    out <- c()
    group <- c()
    names <- c()
    R <- list(stats=stats, n=n, conf=conf, out=out, group=group, names=names)