Hi,
I have data from a single-end 59 bp mouse cells RNA-Seq experiment, each experiment correspond to one cell flow, meaning each experiment is between 100,000,000 to 200,000,000 reads. The protocol was to pull-down polyA RNA.
When I run fastqc I obtain some concerning results:
1) Overrepresented sequences corresponding to the illumina adaptor, is this common?
Overrepresented sequences
Sequence Count Percentage Possible Source
GATCGGAAGAGCACACGTCTGAACTCCAGTCACCGATGTATCTCGTATGCCGTCTTCTG 389676 0.29 TruSeq Adapter, Index 2 (100% over 59bp)
The index of the specific adapter in this experiment is CGATGT, which makes sense. So the adapter is 59 bp, same length as the single-end library? Isn't that an issue? Should I trim all the adapters? Anyone has experience on how to trim the adapters using trim galore? Does the following trim galore command makes sense? Should I use the whole adapter sequence after the -a, or just the index sequences as I did below?
I.e., Should I do this?
trim_galore -a CGATGT -q 15 -s 5 -e 0.05 --length 48 <fastq_file>
or this?
trim_galore -a GATCGGAAGAGCACACGTCTGAACTCCAGTCACCGATGTATCTCGTATGCCG -q 15 -s 5 -e 0.05 --length 48 <fastq_file>
2) High duplicate numbers:
Sequence duplicate levels >= 75 % or so.
What should I do about the high duplicate levels? - My goal is to do differential expression between experiments.
(1) Leave it as it is and map the data
(2) Collapse duplicates into one
(3) No solution experiments with such duplicate levels mean something went wrong.
Please let me know your suggestions regarding this issues. Thanks!
@Istvan thanks a lot.
By variable region you mean actual sequence of index? So that you wouldn't actually trim ATCTCGTATGCCGTCTTCTGCTTG part? Thanks a lot:)
yes because all it needs to match the adapter and once it does will then remove everything after it, so the initial
GATCGGAAGAGCACACGTCTGAACTCCAGTCAC
sufficesYes, I now realize that you are discussing adapter at read ends. I have found Index 2 adaptor at the read beginnings in many of my strand-specific datasets so therefore the question.