Is there a strsplit method for DNAStringSet objects? I have a DNAStringSet object generated from the readFastq function (ShortRead package). In the middle of my reads is a barcode which I would like to use to split the reads into two reads (effectively treating the split read as paired-end reads).
The DNAStringSet object sequences can be convert to a character vector to be used in strsplit. For instance:
Ah so simple, silly me. Thanks for the answer.