Seqanswers Leaderboard Ad

Collapse

Announcement

Collapse
No announcement yet.
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Using DeSeq2 with 16s data, valid parameters

    Hello,

    I am trying to use DeSeq2 in R to analyse differential abundance between 16s samples at OTU level. However I am not sure if the code I am using is valid for what I want to do. Codes comes from the phyloseq tutorial. http://joey711.github.io/phyloseq-ex...ns/DESeq2.html

    My data is 16s data (Illumima MiSeq), collected from birds with different caecal lesion scores (0, 1, 2, 3, 4) and uninfected controls, for each I have <10 biological replicates per group. What I am interested in doing in comparing abundance of OTUs across groups.

    I do as below to load my data into the matrix and then to ensure that I only have two groups (eg. 4 & uninfected) for comparison I remove the other groups using the subset option. Then run the code below.

    My question is, is subsetting like this still allowing the program to take all of the data, even that which isn't being compared, into account?

    Secondly am I struggling to know which parameters to use for this type of data with DeSeq2. Can I simply implement what is done for RnaSeq data here to look for differentially abundant OTUs or is this wrong completely? I am not sure which fitType to use; parametric or local or which test to use; Wald or LRT? Doing comparisons there is not much difference in the data, but would be good to know which is best to use.

    The reason I am using DeSeq2 is because I have a small data set, min of 8 biological replicates, max of 11 biological replicates per group.

    Having read the package manual I am still unclear. http://www.bioconductor.org/packages...man/DESeq2.pdf

    library("phyloseq")
    library("ggplot2")
    library("devtools")
    otufile=("table.from_biom_w_consensuslineage_0_replaced.txt")
    mapfile=("Mapping_file_LS.txt")
    trefile=("rep_set_tree.tre")
    qiimedata = import_qiime(otufile, mapfile, trefile)

    qiimedata = subset_samples(qiimedata, LesionScore != "0")
    qiimedata = subset_samples(qiimedata, LesionScore != "1")
    qiimedata = subset_samples(qiimedata, LesionScore != "2")
    qiimedata = subset_samples(qiimedata, LesionScore != "3")

    diagdds = phyloseq_to_deseq2(qiimedata, ~ LesionScore)
    diagdds = DESeq(diagdds, test="Wald", fitType="parametric")

    res = results(diagdds, cooksCutoff = FALSE)
    alpha = 0.05
    sigtab = res[which(res$padj < alpha), ]
    sigtab = cbind(as(sigtab, "data.frame"), as(tax_table(qiimedata)[rownames(sigtab), ], "matrix"))
    head(sigtab)
    sigtabOrdered <- sigtab[order(sigtab$padj),]
    plotMA(res)
    plotDispEsts(diagdds)


    Any help would be great
    Sarah
    Last edited by sarah_27_m; 01-06-2017, 06:54 AM.

  • #2
    The answer to part of my question, this demonstrates that microbiome count data from amplicon sequencing experiments can be treated with the same procedures as for differential expression data from RNA-Seq experiments.

    Comment

    Latest Articles

    Collapse

    • seqadmin
      Recent Advances in Sequencing Analysis Tools
      by seqadmin


      The sequencing world is rapidly changing due to declining costs, enhanced accuracies, and the advent of newer, cutting-edge instruments. Equally important to these developments are improvements in sequencing analysis, a process that converts vast amounts of raw data into a comprehensible and meaningful form. This complex task requires expertise and the right analysis tools. In this article, we highlight the progress and innovation in sequencing analysis by reviewing several of the...
      Today, 07:48 AM
    • seqadmin
      Essential Discoveries and Tools in Epitranscriptomics
      by seqadmin




      The field of epigenetics has traditionally concentrated more on DNA and how changes like methylation and phosphorylation of histones impact gene expression and regulation. However, our increased understanding of RNA modifications and their importance in cellular processes has led to a rise in epitranscriptomics research. “Epitranscriptomics brings together the concepts of epigenetics and gene expression,” explained Adrien Leger, PhD, Principal Research Scientist...
      04-22-2024, 07:01 AM

    ad_right_rmr

    Collapse

    News

    Collapse

    Topics Statistics Last Post
    Started by seqadmin, Today, 07:17 AM
    0 responses
    11 views
    0 likes
    Last Post seqadmin  
    Started by seqadmin, 05-02-2024, 08:06 AM
    0 responses
    19 views
    0 likes
    Last Post seqadmin  
    Started by seqadmin, 04-30-2024, 12:17 PM
    0 responses
    20 views
    0 likes
    Last Post seqadmin  
    Started by seqadmin, 04-29-2024, 10:49 AM
    0 responses
    28 views
    0 likes
    Last Post seqadmin  
    Working...
    X