Last data update: 2014.03.03

R: plotKmerCount: Creation of plots DNA for k-mer counts from...
plotKmerCountR Documentation

plotKmerCount: Creation of plots DNA for k-mer counts from Fastqq objects.

Description

The function creates plots from counted DNA k-mers from Fastqq objects.

Usage

plotKmerCount(object,index,mxey,main="K-mer count",...)

Arguments

object

Fastqq: Object which contains collected values from nFiles FASTQ files.

index

integer(optional): Index of FASTQ file(s) for which data is plotted. When value is missing, k-mer counts for all contained data is plotted.

mxey

integer(optional): Maximal value for y axis, given by power of 2 (when mxey=4, then maximal ylim value is 2^4 = 16). Allows overriding of automatic calculated values.

main

character(optional): Caption text which printed into the output.

...

Additional parameters which are passed down to the plot function.

Details

Values for i must be in {1,...,nFiles}. The function shrinks the k-mer count table down to size of 4096 (k = 6) when k > 6 in order to limit the complexity of the plot.

Value

None.

Note

The static size of the retured k-mer array is 4^k.

Author(s)

Wolfgang Kaisers

References

Cock PJA, Fields CJ, Goto N, Heuer ML, Rice PM The sanger FASTQ file format for sequences with quality scores and the Solexa/Illumina FASTQ variants. Nucleic Acids Research 2010 Vol.38 No.6 1767-1771

See Also

Fastqq-class

Examples

basedir <- system.file("extdata",package="seqTools")
setwd(basedir)
#
fq <- fastqq(c("g4_l101_n100.fq.gz", "g5_l101_n100.fq.gz"), k=4,
    probeLabel=c("g4", "g5"))
#
plotKmerCount(fq)
plotKmerCount(fq,1)
plotKmerCount(fq, 1:2)
#

Results


R version 3.3.1 (2016-06-21) -- "Bug in Your Hair"
Copyright (C) 2016 The R Foundation for Statistical Computing
Platform: x86_64-pc-linux-gnu (64-bit)

R is free software and comes with ABSOLUTELY NO WARRANTY.
You are welcome to redistribute it under certain conditions.
Type 'license()' or 'licence()' for distribution details.

R is a collaborative project with many contributors.
Type 'contributors()' for more information and
'citation()' on how to cite R or R packages in publications.

Type 'demo()' for some demos, 'help()' for on-line help, or
'help.start()' for an HTML browser interface to help.
Type 'q()' to quit R.

> library(seqTools)
Loading required package: zlibbioc
> png(filename="/home/ddbj/snapshot/RGM3/R_BC/result/seqTools/plotKmerCount.Rd_%03d_medium.png", width=480, height=480)
> ### Name: plotKmerCount
> ### Title: plotKmerCount: Creation of plots DNA for k-mer counts from
> ###   Fastqq objects.
> ### Aliases: plotKmerCount plotKmerCount-methods
> ###   plotKmerCount,Fastqq-method
> ### Keywords: plotKmerCount kmer
> 
> ### ** Examples
> 
> basedir <- system.file("extdata",package="seqTools")
> setwd(basedir)
> #
> fq <- fastqq(c("g4_l101_n100.fq.gz", "g5_l101_n100.fq.gz"), k=4,
+     probeLabel=c("g4", "g5"))
[fastqq] File ( 1/2) 'g4_l101_n100.fq.gz'	done.
[fastqq] File ( 2/2) 'g5_l101_n100.fq.gz'	done.
> #
> plotKmerCount(fq)
> plotKmerCount(fq,1)
> plotKmerCount(fq, 1:2)
> #
> 
> 
> 
> 
> 
> dev.off()
null device 
          1 
>