-
Notifications
You must be signed in to change notification settings - Fork 203
CBW 2021 PICRUSt2 Tutorial Answers
Answers for the CBW 2021 PICRUSt2 tutorial presented as part of the 2021 Canadian Bioinformatics Workshop on microbiome data analysis.
-
There are 36 samples. You could either count the rows of metadata table or type:
wc -l input_files/picrust2_lab_metadata.tsv(which would include the header-line). Alternatively you could get the number of columns in the sequence abundance table with this command:awk '{print NF}' input_files/ASV_abun.tsv | head -n 1 -
You can count how many sequences there are in a FASTA file by counting how many header-lines (i.e. lines that begin with ">") there are:
grep -c ">" input_files/ASVs.fna -
The sequence
70334369bb15777be95200a4edaa90behas the highest NSTI value. -
The genome represented by sequence
3bc9d66614c8c98d398ace7483422449is predicted to have 6 copies of the 16S rRNA gene. -
The normalized abundance is 3.67, which means that there must have been 3 predicted marker genes. (11/3 = 3.67)
-
The column sums wouldn't typically be equal since there are different numbers of gene families for each predicted genome. Remember that each predicted genome is based on each input ASV, which will be at variable relative abundances across your samples!
-
PWY-6317 is galactose degradation I (Leloir pathway).
- Please feel free to post a question on the Microbiome Helper google group if you have any issues.
- General comments or inquires about Microbiome Helper can be sent to morgan.langille@dal.ca.
Useful Links
Microbiome Helper 2
- 1.1. Overview - start here!
- 1.2. What you need to start a microbiome analysis
- 1.3. Introduction to command line
- 1.4. Introduction to R and R notebooks
- 1.5. Download tutorial data
- 1.6. Setting up environments for analysis
Microbiome Helper 2 - marker gene/amplicon
Microbiome Helper 2 - metagenome
- 3.1. Metagenomics first steps
- 3.2. Taxonomic annotation with Kraken 2
- 3.3. Functional annotation with MMSeqs 2 (and combining taxonomic and functional annotations)
- 3.4. Getting a tree for metagenomic taxonomic annotations
- 3.5. MAG assembly, binning, and curation with Anvi'o
- 3.6. AMR gene annotation with CARD RGI
- 3.7. Obtaining annotations for function/gene of interest with HMMs
Microbiome Helper 2 - downstream/statistical analysis
Tutorials