Giter VIP home page Giter VIP logo

fx_tools's Introduction

                                   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)

fx_tools's People

Contributors

esiragusa avatar h-2 avatar holtgrewe avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.