I have extracted the 16S rRNA from single cultured bacteria and then performed Sanger sequencing for identification purposes (Ihad both forward and reverse sequences for each one.). Therefore, I had ab1 files. After following the suggestion made by @Nicholas_Bokulich in a past question, I have converted the ab1 files to fastq using tracy in a conda environment. However, I am struggling to upload these sequences as QIIME2 artifact to continue with the pipeline suggested by @Nicholas_Bokulich in that forum as follows:
- Use
q2-quality-filter
to filter these reads, dereplicate withq2-vsearch
. - Use the classification method of your choice in
q2-feature-classifier
to taxonomically classify your sequences. - Use the
q2-phylogeny
plugin to align your sequences and build a phylogeny.
I already had written the fastq manifest as suggested in the qiime2docs. How should I write the code for importing these types of fastq files into QIIME2? Which -- type and --input-format are these fastq files? I have tried --type 'SampleData[Sequences]'. However, I am not sure about the Phred type. Thanks!