Trimming tool
2
0
Entering edit mode
4 months ago
GeneC • 0

Hello,

Is there any free standing tool kit to trim extra bases or adapter sequences from fastq files?

Thanks

Trimming • 547 views
ADD COMMENT
1
Entering edit mode

Please do a few simple Google searches before asking others for help.

ADD REPLY
1
Entering edit mode
4 months ago
GenoMax 146k

There are plenty. bbduk.sh from BBMap suite (https://jgi.doe.gov/data-and-tools/software-tools/bbtools/bb-tools-user-guide/bbduk-guide/ ) , fastp (LINK), cutadapt (LINK) and trimmomatic (LINK).

ADD COMMENT
0
Entering edit mode
4 months ago
ntsopoul ▴ 60

I use Trim Galore which automatically recognizes adaptors. https://github.com/FelixKrueger/TrimGalore

Here is the script I am using for paired-end sequencing

for i in $(ls *R1* | sed s/_R1.fastq.gz// | sort -u); 

do

trim_galore --paired ${i}_R1.fastq.gz ${i}_R2.fastq.gz -q 20 -o ./galore-trimmed --fastqc --cores 6 --stringency 3

done
ADD COMMENT

Login before adding your answer.

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