--- author: Sam White toc-title: Contents toc-depth: 5 toc-location: left layout: post title: RNAseq Reads Extractions - C.bairdi Taxonomic Reads Extractions with MEGAN6 on swoose date: '2020-04-19 12:10' tags: - Tanner crab - MEGAN6 - taxonomy - swoose - Jupyter - Hematodinium - Chionoecetes bairdi categories: - 2020 - Miscellaneous --- [I previously annotated reads and converted them to the MEGAN6 format RMA6 on 20200414](https://robertslab.github.io/sams-notebook/posts/2020/2020-04-14-Taxonomic-Assignments---C.bairdi-RNAseq-Using-DIAMOND-BLASTx-on-Mox-and-MEGAN6-Meganizer-on-swoose/). I'll use the MEGAN6 GUI to "Open" the RMA6 file. Once the file loads, you get a nice looking taxonomic tree! From here, you can select any part of the taxonomic tree by right-clicking on the desired taxonomy and "Extract reads...". Here, you have the option to include "Summarized reads". This option allows you to extract just the reads that are part of the exact classification you've selected or all those within and "below" the classification you've selected (i.e. summarized reads). Extracted reads will be generated as FastA files. Example: If you select _Arthropoda_ and _do not_ check the box for "Summarized Reads" you will _only get reads classified as Arthropoda_! You will not get any reads with more specific taxonomies. However, if you select _Arthropoda_ and you _do_ check the box for "Summarized Reads", you will get all reads classified as _Arthropoda_ _AND_ all reads in more specific taxonomic classifications, down to the species level. I will extract reads from two phyla: - _Arthropoda_ (for crabs) - _Alveolata_ (for _Hematodinium_) After read extractions using MEGAN6, I'll need to extract the actual reads from the trimmed FastQ files from [20200414](https://robertslab.github.io/sams-notebook/posts/2020/2020-04-14-TrimmingFastQCMultiQC---C.bairdi-RNAseq-FastQ-with-fastp-on-Mox/). It's a bit convoluted, but I realized that the FastA headers were incomplete and did not distinguish between paired reads. Here's an example: R1 FastQ header: `@A00147:37:HG2WLDMXX:1:1101:5303:1000 1:N:0:AGGCGAAG+AGGCGAAG` R2 FastQ header: `@A00147:37:HG2WLDMXX:1:1101:5303:1000 2:N:0:AGGCGAAG+AGGCGAAG` However, the reads extracted via MEGAN have FastA headers like this: ``` >A00147:37:HG2WLDMXX:1:1101:5303:1000 SEQUENCE1 >A00147:37:HG2WLDMXX:1:1101:5303:1000 SEQUENCE2 ``` Those are a set of paired reads, but there's no way to distinguish between R1/R2. This may not be an issue, but I'm not sure how downstream programs (i.e. Trinity) will handle duplicate FastA IDs as inputs. To avoid any headaches, I've decided to parse out the corresponding FastQ reads which have the full header info. Here's a brief rundown of the approach: 1. Create list of unique read headers from MEGAN6 FastA files. 2. Use list with `seqtk` program to pull out corresponding FastQ reads from the trimmed FastQ R1 and R2 files. This aspect of read extractions/concatenations is documented in the following Jupyter notebook (GitHub): - [20200419_swoose_cbai_megan_day-treatment-temp_read_extractions.ipynb](https://github.com/RobertsLab/code/blob/master/notebooks/sam/20200419_swoose_cbai_megan_day-treatment-temp_read_extractions.ipynb) --- # RESULTS OUTPUT FOLDERS Initial reads extracted as FastAs: - [20200419_cbai_MEGAN_read_extractions/](https://gannet.fish.washington.edu/Atumefaciens/20200419_cbai_MEGAN_read_extractions/) FastQ _C.bairdi_ read extractions: - [20200419_C_bairdi_megan_reads](https://gannet.fish.washington.edu/Atumefaciens/20200419_C_bairdi_megan_reads/) FastQ _Hematodinium_ read extractions: - [20200419_Hematodinium_megan_reads](https://gannet.fish.washington.edu/Atumefaciens/20200419_Hematodinium_megan_reads/) --- #### Taxonomic Trees ![(MEGAN taxonomic tree for 380820](https://raw.githubusercontent.com/RobertsLab/sams-notebook/master/images/screencaps/20200419_cbai_MEGAN_read_extractions_380820.png) --- ![(MEGAN taxonomic tree for 380821](https://raw.githubusercontent.com/RobertsLab/sams-notebook/master/images/screencaps/20200419_cbai_MEGAN_read_extractions_380821.png) --- ![(MEGAN taxonomic tree for 380822](https://raw.githubusercontent.com/RobertsLab/sams-notebook/master/images/screencaps/20200419_cbai_MEGAN_read_extractions_380822.png) --- ![(MEGAN taxonomic tree for 380823](https://raw.githubusercontent.com/RobertsLab/sams-notebook/master/images/screencaps/20200419_cbai_MEGAN_read_extractions_380823.png) --- ![(MEGAN taxonomic tree for 380824](https://raw.githubusercontent.com/RobertsLab/sams-notebook/master/images/screencaps/20200419_cbai_MEGAN_read_extractions_380824.png) --- ![(MEGAN taxonomic tree for 380825](https://raw.githubusercontent.com/RobertsLab/sams-notebook/master/images/screencaps/20200419_cbai_MEGAN_read_extractions_380825.png)