Learn R Programming

seqTools (version 1.6.0)

cbDistMatrix: cbDistMatrix function: Calculates pairwise distance matrix from DNA k-mer counts based on a modified Canberra distance.

Description

Calculates pairwise distance matrix from DNA k-mer counts based on a modified Canberra distance. Before calculating canberra distances, read counts are normalized (in order to correct systematic effects on the distance) by scaling up read counts in each DNA k-mer count vector so that normalized read counts in each sample are nearly equal.

Usage

cbDistMatrix(object,nReadNorm=max(nReads(object)))

Arguments

object
Fastqq: Object from which DNA k-mer counts are used.
nReadNorm
numeric: Number of reads per file to wich all contained DNA k-mer counts are normalized. Because the normalization is intended to increase counts the value must be greater than all FASTQ file read counts (as reported by nReads). Therefore the standard value is chosen to the maximal number of reads recorded in this object. This normalization is necessary to compensate for systematic effects in the canberra distance.

Value

  • Square matrix. The number of rows equals the number of files (=nFiles(object)).

Details

The distance between two DNA k-mer normalized count vectors is calculated by $$df (X,Y)= \sum_{i=1}^n cbd(x_i,y_i) / 4^k$$ where cb is given by $$cbd(x,y)=|x-y|/(x+y).$$

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

hclust

Examples

Run this code
basedir<-system.file("extdata",package="seqTools")
basenames<-c("g4_l101_n100.fq.gz","g5_l101_n100.fq.gz")
filenames<-file.path(basedir,basenames)
fq<-fastqq(filenames,6,c("g4","g5"))
dm<-cbDistMatrix(fq)

Run the code above in your browser using DataLab