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

..03-May-2022-

LICENSEH A D02-Feb-20181.5 KiB2723

READMEH A D02-Feb-20182.7 KiB7253

fx_bam_coverage.cppH A D02-Feb-201812.6 KiB321192

fx_fastq_stats.cppH A D02-Feb-201813.8 KiB351200

README

1                                   FX Tools
2                         NGS Data Manipluation Tools
3
4                                 Version 0.2
5                                 August, 2013
6
7------------------------------------------------------------------------------
8Table of Contents
9------------------------------------------------------------------------------
10
11  1. Overview
12  2. Examples
13  3. Reference and Contact
14
15------------------------------------------------------------------------------
161. Overview
17------------------------------------------------------------------------------
18
19------------------------------------------------------------------------------
202. Examples
21------------------------------------------------------------------------------
22
23------------------------------------------------------------------------------
242.1 Help
25------------------------------------------------------------------------------
26
27You can get the manual for the tools by calling them with the --help command,
28for example:
29
30$ fx_bam_coverage --help
31
32prints the help of fx_bam_coverage.
33
34------------------------------------------------------------------------------
352.2 Coverage computation of SAM or BAM file
36------------------------------------------------------------------------------
37
38$ fx_bam_coverage
39
40------------------------------------------------------------------------------
413. Reference and Contact
42------------------------------------------------------------------------------
43
44Send an email to the SeqAn mailing list:
45
46    https://lists.fu-berlin.de/listinfo/seqan-dev
47
48------------------------------------------------------------------------------
494. R Snippets
50------------------------------------------------------------------------------
51
52------------------------------------------------------------------------------
534.1. Conversion for Plotting with R
54------------------------------------------------------------------------------
55
56Converting the data.frame generated from the fx_fastq_stats TSV output into
57a list that can be plotted using bxp(R).
58
59    colnames(R) <- c("Column", "Count", "Minimal.Quality", "Maximal.Quality",
60                     "Quality.Sum", "Quality.Mean", "1st.Quartile.Score",
61                     "Median.Score", "3rd.Quartile.Score",
62                     "Inter.Quality.Range", "Left.Whisker", "Right.Whisker",
63                     "A.Count", "C.Count", "G.Count", "T.Count", "N.Count")
64    stats <- t(data.matrix(R[c("Minimal.Quality", "1st.Quartile.Score",
65                               "3rd.Quartile.Score", "Maximal.Quality")]))
66    n <- R[, "Count"]
67    conf <- t(data.matrix(R[c("Minimal.Quality", "Maximal.Quality")]))
68    out <- c()
69    group <- c()
70    names <- c()
71    R <- list(stats=stats, n=n, conf=conf, out=out, group=group, names=names)
72