Description Usage Arguments Details Value Author(s) Examples
The contents of two given Fastqq objects are merged together into one resulting Fastqq object.
1 | mergeFastqq(lhs,rhs)
|
lhs |
|
rhs |
|
The data on all fastq files in the two incoming objects is merged together. The object has the same internal structure as if the data from all fastq files had been collected by a separate call of fastqq
on the merged fastq file names of the arguments.
S4 Object of class 'Fastqq'.
Wolfgang Kaisers
1 2 3 4 5 | basedir<-system.file("extdata",package="seqTools")
setwd(basedir)
lhs<-fastqq("g4_l101_n100.fq.gz",k=4,"g4")
rhs<-fastqq("g5_l101_n100.fq.gz",k=4,"g5")
fq<-mergeFastqq(lhs,rhs)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.