QIIME Differential abundance on multiple studies
1
0
Entering edit mode
@syafiqkamarulazman-14089
Last seen 6.5 years ago

I have a collection samples spanning 3 different studies. I am performing differential abundance to identify the OTUs which are significant in seawater vs membranes.

With the entire collection, I can easily do

differential_abundance.py studies.biom -o diff_otus.txt -a DESeq2_nbinom \
                                       -m source_type.map -c SourceType \
                                       -x Membrane -y Seawater -d

 

I also want to perform differential abundance for each study individually.

Can I just add a new column into my mapping file called SourceStudy to discriminate the study and the source type at the same time?

Will the results from DESeq2 from running the following be meaningful?

differential_abundance.py studies.biom -o diff_otus_s1.txt -a DESeq2_nbinom \
                                       -m source_type.map -c SourceStudy \
                                       -x S1Membrane -y S1Seawater -d
differential_abundance.py studies.biom -o diff_otus_s2.txt -a DESeq2_nbinom \
                                       -m source_type.map -c SourceStudy \
                                       -x S2Membrane -y S2Seawater -d
differential_abundance.py studies.biom -o diff_otus_s3.txt -a DESeq2_nbinom \
                                       -m source_type.map -c SourceStudy \
                                       -x S3Membrane -y S3Seawater -d

 

Should I instead split the BIOM table into individual studies and then perform differential abundance like the following?

differential_abundance.py study1.biom -o diff_otus_s1.txt -a DESeq2_nbinom \
                                       -m source_type.map -c SourceType \
                                       -x Membrane -y Seawater -d
differential_abundance.py study2.biom -o diff_otus_s2.txt -a DESeq2_nbinom \
                                       -m source_type.map -c SourceType \
                                       -x Membrane -y Seawater -d
differential_abundance.py study3.biom -o diff_otus_s3.txt -a DESeq2_nbinom \
                                       -m source_type.map -c SourceType \
                                       -x Membrane -y Seawater -d
deseq2 qiime • 988 views
ADD COMMENT
1
Entering edit mode
@mikelove
Last seen 1 hour ago
United States

You’ll have to ask the authors of the differential_abundance.py script. I didn’t write it.

ADD COMMENT
0
Entering edit mode

Thanks for letting me know, I should have tried the QIIME forums first. Thanks anyway
 

ADD REPLY

Login before adding your answer.

Traffic: 787 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6