mate pair trimming ?
3
1
Entering edit mode
7.9 years ago
Picasa ▴ 640

Prior to an assembly, I would like to trim out adaptor sequences from mate pair library.

I use usally Trimmomatic, but it doesn't suit for mate pair because of orientation right ? Do you have any recommandation for mate pair trimming ?

mate pair • 3.5k views
ADD COMMENT
2
Entering edit mode

You can try Cutadapt. More information can be found: Trimming Adapters

ADD REPLY
2
Entering edit mode
7.9 years ago

Take a look to BBDuk. There is plenty of information about it HERE

ADD COMMENT
1
Entering edit mode
7.9 years ago
Shicheng Guo ★ 9.4k

You can try Trim_galore http://www.bioinformatics.babraham.ac.uk/projects/trim_galore/:

Single end

trim_galore $phred --fastqc --illumina --clip_R1 3 --clip_R2 3 $read[0] --output_dir ../fastq_trim

Pair-end

trim_galore $phred --fastqc --illumina --paired --clip_R1 3 --clip_R2 3 --three_prime_clip_R1 3 --three_prime_clip_R2 3 $read[0] $read[1] --output_dir ../
ADD COMMENT
1
Entering edit mode
7.9 years ago
Chris Fields ★ 2.2k

If you are removing the Nextera internal adapter for mate-pair libraries, you should use NxTrim:

https://github.com/sequencing/NxTrim

This will both trim the internal adapter and categorize the reads into groups: true mate-pairs, single-end, paired-end, and unknown (no adapter found, so likely a mix of true mates and paired-end). Note that the tool will revcomp the output by default to make them innies, which is NOT what most assemblers want. You can stifle this to keep the outie orientation by using the --norc option.

Otherwise, the above choices will work for other standard adapter sequences.

ADD COMMENT
1
Entering edit mode

I' want to try this soft with a mate pair library (insert length of 3000). So what is the differentce between theyr true mate and their paired end ? is the paired end still have an insert length of 3000 ?.

Does is trim sequencign adaptor too ? (like P1 etc.)

ADD REPLY

Login before adding your answer.

Traffic: 2967 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