User Tools

Site Tools


population-diversity:microbiome-analysis-with-qiime2-using-illumina-paired-end-sequence-data

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
population-diversity:microbiome-analysis-with-qiime2-using-illumina-paired-end-sequence-data [2020/04/29 14:36] – [Qiime2 data filtering and feature (OTU) table construction] bnginapopulation-diversity:microbiome-analysis-with-qiime2-using-illumina-paired-end-sequence-data [2020/04/29 15:09] (current) – [Qiime2 data filtering and feature (OTU) table construction] bngina
Line 47: Line 47:
 === Dada2 === === Dada2 ===
  
-The Dada2 pipeline detects and corrects illumina amplicon sequence data and additionally filter any phiX reads identified in sequencing data and also filter out any chimeric sequences. +The Dada2 pipeline detects and corrects illumina amplicon sequence data and additionally filters any phiX reads identified in sequencing data and also filter out any chimeric sequences. 
 To see usage and parameters that can be adjusted get the help for the pluggin i.e To see usage and parameters that can be adjusted get the help for the pluggin i.e
  
Line 60: Line 60:
 The other key parameters in quality control of the sequences are those used to trim the forward, ''--p-trim-left-f''; ''--p-trunc-len-f'' and reverse '' --p-trim-left-r''; ''--p-trunc-len-r'' reads. The //''--p-trim-left-[f/r]''// tell qiime how many bases to trim from the beginning of the sequence, while the //''--p-trunc-len[f|r]''// tell qiime at what position the sequences should be truncated at the end.  The other key parameters in quality control of the sequences are those used to trim the forward, ''--p-trim-left-f''; ''--p-trunc-len-f'' and reverse '' --p-trim-left-r''; ''--p-trunc-len-r'' reads. The //''--p-trim-left-[f/r]''// tell qiime how many bases to trim from the beginning of the sequence, while the //''--p-trunc-len[f|r]''// tell qiime at what position the sequences should be truncated at the end. 
  
-To determine the truncate length, look at the imported readst+To determine what values to pass for these two parameters; 
 +  *Review the Interactive Quality Plot tab in the //''demux.qzv''// file that was generated by ''qiime demux summarize'' after importing the data to trim of the poor quality bases.  
 +  *The expected fragment size after the reads are joined, particularly for the //''--p-trunc-len[f|r]''// Refer to the expected fragment length for the primers used to prepare the libraries for sequencing. For example if the expected fragment length for your sequences is 465bpand lets say the insert size during the sequencing was 300bp. We would want to have a final length of at least 465by or more to have better chances of final sequences of full length for the alignment. Considering that more often than not the forward sequences from illumina sequences have better quality than the reverse sequences. We could use a //''--p-trunc-len-f''// of //''250''// and a //''--p-trunc-len-r''// of //''220''//. to have a final sequence length of //''470bp''//
 + 
 +The command would therefore be 
 + 
 +<code> 
 +qiime dada2 denoise-paired \ 
 + --i-demultiplexed-seqs /home/mydir/qiime2_data/my_raw_data.qza \ 
 + --p-trim-left-f 0 \ 
 + --p-trim-left-r 0 \ 
 + --p-trunc-len-f 250 \ 
 + --p-trunc-len-r 220\ 
 + --o-table /home/mydir/qiime2_data/dada2_470_table.qza \ 
 + --o-representative-sequences /home/mydir/qiime2_data/dada2_470_rep-seqs.qza \ 
 + --o-denoising-stats /home/mydir/qiime2_data/dada2_470_denoising-stats.qza \ 
 + --p-n-threads 4 
 + 
 +#summarise the features table to view it 
 +         
 +qiime feature-table summarize \ 
 + --i-table /home/mydir/qiime2_data/dada2_470_table.qza \ 
 + --o-visualization /home/mydir/qiime2_data/dada2_470_table.qzv 
 + 
 + 
 +#view a summary of the rep sequences 
 + 
 +qiime feature-table tabulate-seqs \ 
 + --i-data  /home/mydir/qiime2_data/dada2_470_rep-seqs.qza \ 
 + --o-visualization  /home/mydir/qiime2_data/dada2_470_rep-seqs.qzv 
 + 
 +#and also view the denoising statistics 
 +qiime metadata tabulate \ 
 +  --m-input-file /home/mydir/qiime2_data/dada2_470_denoising-stats.qza \ 
 +  --o-visualization /home/mydir/qiime2_data/dada2_470_denoising-stats.qza 
 +</code>
population-diversity/microbiome-analysis-with-qiime2-using-illumina-paired-end-sequence-data.1588171001.txt.gz · Last modified: 2020/04/29 14:36 by bngina