Cut-adapt trim paired - different results when primers separate vs linked

Hi,

I am getting different results when I list my primers separately vs listing them as linked. Linked, both are removed correctly, but listed separately, the forward primers are not being removed.

Specifically, this script removes both forward and reverse primers:

qiime cutadapt trim-paired
–i-demultiplexed-sequences Mini_test/demultiplexed_sequences.qza
–p-adapter-f ^GGGCATCACAGACCTG…CGYGTTGAGTCAAATTAAGCC
–p-adapter-r ^GGCTTAATTTGACTCAACRCG…CAGGTCTGTGATGCCC
–o-trimmed-sequences Mini_test/demultiplexed_trimmed_sequences_8.qza \

But this script is only removing the reverse primers:

qiime cutadapt trim-paired
–i-demultiplexed-sequences Mini_test/demultiplexed_sequences.qza
–p-front-f ^GGGCATCACAGACCTG
–p-adapter-f CGYGTTGAGTCAAATTAAGCC
–p-front-r ^GGCTTAATTTGACTCAACRCG
–p-adapter-r CAGGTCTGTGATGCCC
–o-trimmed-sequences Mini_test/demultiplexed_trimmed_sequences_7.qza \

Ideally, I would like to run them separately, because I would like to discard any sequences missing the forward primer, since these are probably no good, but retain sequences that are only missing the reverse primer, since these might be the result of biologically meaningful length variation in the amplicon. (I tried specifying the reverse of the linked primers as optional - “;optional”, as per the cut-adapt website, but that made all kinds of errors)

Any insight into where I’m going wrong would be much appreciated!

2 Likes

Solved it!

Apparently it can’t handle too many separate things at once - running forwards and reverses as two separate commands gave the expected trimming.

3 Likes

This topic was automatically closed 31 days after the last reply. New replies are no longer allowed.