I have downloaded the folder ‘All QIIME Maps and BIOM’ from Qiita. However, I do not understand the structure of the downloaded folders. It has 3 subfolders:
BIOM - many BIOM and seqs.fa files (with different number ID’s)
mapping_files - many mapping files (with different number ID’s)
processed_data
What do these files represent? Which ones do I use to do analyses like the ‘Moving Pictures’ tutorial (mainly with sequences, barcodes, and mapping file/metadata)?
Hi @YinXun,
QIITA is separate from QIIME 2 and has its own support venue — I believe an FAQs section and email address are provided on the QIITA website for support. Since nobody has answered your questions here yet I recommend contacting the official support for QIITA.
For this study (as many in Qiita), the raw data is not available ( sequences, barcodes, and metadata). So, if you want to apply the ‘Moving Pictures’ tutorial for this case, you should modify some steps at the beginning of this tutorial (at less until demultiplexed files) and download other files in Qiita.
After clicking in the link that you left above and enter in the study description, follow the steps in the pic:
Once you've downloaded the file "741_seqs.fastq" open it and see the structure, you're going to see that barcode sequences are inside the sequences. So the next step is make a demultiplex of the samples with the sequences but before of this, compress this raw file with gzip and change its name, after this, you'll get some like this forward.fastq.gz
Now, import this raw file in a Qiime2 artifact, using the type "MultiplexedSingleEndBarcodeInSequence". Your instruction should look like this:
Now, make demultiplexing of your raw file, using the artifact created previously and the formatted metadata with the plugin "cutadapt" and the method "demux-single: Demultiplex single-end sequence data with barcodes in-sequence". Your instruction, should look like this:
After this, I guess that you can follow the "moving pictures tutorial normally" at the step " Sequence quality control and feature table construction".