Hello, everyone! I'm a newbie of QIIME2.
I ran Illumina iseq 100 amplifying the V4 region (515F/806R) and set the cycle by 1X300. I used Nextera XT index v2 (S502, N701...) to barcode sequences.
Now I'm having trouble removing the adapter and primer. After removing primers, expected size of V4 region is 252 bp but it wasn't.
I amplified V4 region using primers with Illumina Nextera transposase adapter sequence like this.
1) 16s V4 FW primer : TCGTCGGCAGCGTCAGATGTGTATAAGAGACAG (Nextera transposase) + GTGCCAGCMGCCGCGGTAA (515F)
2) 16s V4 BW primer : GTCTCGTGGGCTCGGAGATGTGTATAAGAGACAG (Nextera transposase) + GGACTACHVGGGTWTCTAAT (806R)
Then I used the trimming command as follows.
**First, I tried using adapter trimming sequence in the primers. **
qiime cutadapt trim-single
--i-demultiplexed-sequences abxmouse-demux.qza
--p-cores 32
--p-front GTGCCAGCMGCCGCGGTAA GGACTACHVGGGTWTCTAAT
--p-adapter TCGTCGGCAGCGTCAGATGTGTATAAGAGACAG GTCTCGTGGGCTCGGAGATGTGTATAAGAGACAG
--p-error-rate 0.1
--p-match-read-wildcards
--p-match-adapter-wildcards
--p-discard-untrimmed
--o-trimmed-sequences abxmouse-trimmed-demux2.qza
--verbose > cutadapt-log.txt
-> Most of them ended up with 273 bp left over.
**Second, I tried using adapter trimming sequence as follow Illumina webpage. **
qiime cutadapt trim-single
--i-demultiplexed-sequences abxmouse-demux.qza
--p-cores 32
--p-front GTGCCAGCMGCCGCGGTAA GGACTACHVGGGTWTCTAAT
--p-adapter CTGTCTCTTATACACATCT
--p-error-rate 0.1
--p-match-read-wildcards
--p-match-adapter-wildcards
--p-discard-untrimmed
--o-trimmed-sequences abxmouse-trimmed-demux2.qza
--verbose > cutadapt-log.txt
-> Most of them ended up with 273 bp left over too.
**Third, I tried using --p-anywhere parameter. From this step on, I've set all options to default except minimum length. **
qiime cutadapt trim-single
--i-demultiplexed-sequences abxmouse-demux.qza
--p-cores 32
--p-anywhere TCGTCGGCAGCGTCAGATGTGTATAAGAGACAGGTGCCAGCMGCCGCGGTAA GTCTCGTGGGCTCGGAGATGTGTATAAGAGACAGGGACTACHVGGGTWTCTAAT
--p-minimum-length 250
--o-trimmed-sequences abxmouse-trimmed-demux2.qza
--verbose > cutadapt-log.txt
-> Most of them ended up with 273 bp left over too.
Fourth, I tried using both --p-front and --p-adapter parameters.
qiime cutadapt trim-single
--i-demultiplexed-sequences abxmouse-demux.qza
--p-cores 32
--p-front TCGTCGGCAGCGTCAGATGTGTATAAGAGACAGGTGCCAGCMGCCGCGGTAA GTCTCGTGGGCTCGGAGATGTGTATAAGAGACAGGGACTACHVGGGTWTCTAAT
--p-adapter TCGTCGGCAGCGTCAGATGTGTATAAGAGACAGGTGCCAGCMGCCGCGGTAA GTCTCGTGGGCTCGGAGATGTGTATAAGAGACAGGGACTACHVGGGTWTCTAAT
--p-minimum-length 250
--o-trimmed-sequences abxmouse-trimmed-demux2.qza
--verbose > cutadapt-log.txt
-> Most of them ended up with 273 bp left over too.
I found the trimmed sequence from trimmed fast file, but they were not exist. So I am so confused why the most of forward sequence is 273 bp.
I really wondering what is the most appropriate command for Illumina 1x300 single end sequencing and why the sizes of sequences are mostly 273 bp, not 252 bp.
Thank you for reading this long and chaotic post.