Illumina adaptor to be trimmed from fastq RNAseq files
2
0
Entering edit mode
7.2 years ago
ebrahimiet ▴ 50

Hi

Which Adaptor (and any other sequence) needs to be trimmed from RNASeq fastq data generated by Illumina TruSeq stranded mRNA Sample Preparation kit

Thanks

RNA-Seq • 4.0k views
ADD COMMENT
0
Entering edit mode

Here is a nice tutorial and explanation about Illumina adaptors. You can use trim_galore to remove TrueSeq adaptors. Illumina adaptors explanation

ADD REPLY
1
Entering edit mode
7.2 years ago
GenoMax 141k

BBMap suite (pure java, runs on WIn,macOS,linux) includes a file which contains all commonly used adapter sequences. You don't need to single out TruSeq adapters but can use entire (adapters.fa) file to scan your sequences with. bbduk.sh is the program you would want to use. adapters.fa file is in resources directory in bbmap source. See this thread for usage explanation.

ADD COMMENT
0
Entering edit mode
2.5 years ago
Jiacheng ▴ 60

It is recommended to scan possible adapters and trim the exact adapter, rather than to trim all possible adapter sequences because the latter would over-trim a lot of sequences.

I'd recommend atria to determine and trim the adapter sequences. It is a cutting-edge trimmer with exceptional precision and speed.

Eg: Finding adapters

atria --detect-adapter -r reads.fastq [...]

Trimming single-ended fastq:

atria -r reads.fastq -a DETECTED_ADAPTER

Trimming paired-ended fastq:

atria -r read1.fastq -R read2.fastq -a DETECTED_ADAPTER1 -A DETECTED_ADAPTER2
ADD COMMENT

Login before adding your answer.

Traffic: 1662 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6