Entering edit mode
7.4 years ago
Nicolas Rosewick
11k
Hi,
I've a list of ShortReadQ object. Each object representing a subset of a fastq file :
r1[1:3]
$`42`
class: ShortReadQ
length: 1 reads; width: 102 cycles
$`123`
class: ShortReadQ
length: 1 reads; width: 112 cycles
$`124`
class: ShortReadQ
length: 1 reads; width: 112 cycles
is(r1.consensus)
[1] "list" "vector" "AssayData" "vector_OR_factor"
I'm struggling to concatenate them into one ShortReadQ object. I tried do.call(c,r1) but it didn't work.. Any advice ?
Thanks