mergeFastqq: mergeFastqq: Merges two Fastqq object into one.

Description Usage Arguments Details Value Author(s) Examples

Description

The contents of two given Fastqq objects are merged together into one resulting Fastqq object.

Usage

1
mergeFastqq(lhs,rhs)

Arguments

lhs

Fastqq.

rhs

Fastqq.

Details

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.

Value

S4 Object of class 'Fastqq'.

Author(s)

Wolfgang Kaisers

Examples

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)

seqTools documentation built on May 2, 2019, 4:45 p.m.