Hi everyone,
I followed the Cancer Microbiome Intervention Tutorial (Filtering feature tables — QIIME 2 Cancer Microbiome Intervention Tutorial) but I am having issues in the denoising step using DADA2. I have 2x300 Illumina Sequencing paired-end reads. I was given just the raw reads and I imported them using the Cassava format. This is how the file names look like:
Sample_Barcode_L001_R1_001.fastq.gz and Sample_Barcode_L001_R2_001.fastq.gz
I used the following commands to import the data:
qiime tools import
--type 'SampleData[PairedEndSequencesWithQuality]'
--input-format CasavaOneEightSingleLanePerSampleDirFmt
--input-path data_to_import
--output-path demultiplexed-sequences.qza
Based on my quality plots I truncated both forward and reverse sequences at 270, however I am getting below 50% of reads that passed the filter. Please, if you have any advice let me know. Thank you!
qiime dada2 denoise-paired --i-demultiplexed-seqs demux-paired-end.qza --p-trunc-len-f 270 --p-trunc-len-r 270 --o-table table.qza --o-representative-sequences rep-seqs.qza --o-denoising-stats denoising-stats.qza