Hi. I'm trying trimming the adapters of my RNAseq and I found the adapter used, is the TruSeq Adapter, Index 1. But, when I use cutadapt
or fastx_clipper
the adapters remain in the sequences. I think that the size of the adapter make more complex the process of trimming.
I found too that the sequence of adapter is not the complete adapter but a part of that. That is:
TruSeq Adapter, Index 1
Complete = GATCGGAAGAGCACACGTCTGAACTCCAGTCACATCACGATCTCGTATGCCGTCTTCTGCTTG
Part = GAACTCCAGTCACATCACGATCTCGTATGCCGTCTTCTGCTTG
Maybe I should trimming the adapters using part of then or the correct would be trimming using the complete adapter sequence even if the trimming process is incomplete?
I usually pass to cutadapt only the first bases of the TruSeq adapter ('AGATCGGAAGAGC'), just like trim_galore. This way you capture several Illumina adapters in one go.
But, can I use one small part of adapter sequence?
Well, the straight answer is yes.
cutadapt
won't mind what sequence you use, of course. Question is, what do you expect to cut?cutadapt
has several options about how to detect and trim. I'd suggest to do some experiments by picking or generating few reads which you expect to be trimmed and then play withcutadapt
's parameters to see the results.