Hi Everyone,
I downloaded *.sra files of whole genome sequences from SRA database, I extracted FASTQ files and later run FASTQC for raw data QC check.
The "kmer content" section shows overrepresented sequences.
Sequence Count PValue Obs/Exp Max Max Obs/Exp Position
CGCCGTA 79245 0.0 15.361623 46-47
GTCGCCG 102530 0.0 12.1878605 44-45
TCGCCGT 105080 0.0 11.008696 46-47
GCCGTAT 115190 0.0 10.8824835 48-49 ....
I have no idea clearly about what adapter sequences were used, can anyone tell me from where i can find adapter information of SRA downloaded file?
or how can i trim the kmer sequences over representation? I am afriad the kmer length is short they can match with any where in the genome randomly..
Thanks,
sohail
3 answers
You can find if the reads are contaminated with adapters in the over-representation section of the FASTQC output file. Most of the Illumina adapters are recognized and listed. If the downloaded SRA file is from Ion Torrent platform, there is less chance of adapter being there, as the torrent server trims the adapter by default.
To trim the short over represented sequences from either end of the reads, you can use cutadapt -u option. Hope this helps.
If you have paired reads, you can use BBMap to identify adapter sequences like this:
bbmerge.sh in1=r1.fq in2=r2.fq outa=adapters.fa strict
Alternately, the BBMap package is distributed with a file "adapters.fa" which contains most adapters commonly used in Illumina sequencing, and tends to work well for adapter-trimming.
Log in to answer this question.