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
      Best Practices for Single-Cell Sequencing Analysis
      by seqadmin



      While isolating and preparing single cells for sequencing was historically the bottleneck, recent technological advancements have shifted the challenge to data analysis. This highlights the rapidly evolving nature of single-cell sequencing. The inherent complexity of single-cell analysis has intensified with the surge in data volume and the incorporation of diverse and more complex datasets. This article explores the challenges in analysis, examines common pitfalls, offers...
      Yesterday, 07:15 AM
    • seqadmin
      Latest Developments in Precision Medicine
      by seqadmin



      Technological advances have led to drastic improvements in the field of precision medicine, enabling more personalized approaches to treatment. This article explores four leading groups that are overcoming many of the challenges of genomic profiling and precision medicine through their innovative platforms and technologies.

      Somatic Genomics
      “We have such a tremendous amount of genetic diversity that exists within each of us, and not just between us as individuals,”...
      05-24-2024, 01:16 PM

    ad_right_rmr

    Collapse

    News

    Collapse

    Topics Statistics Last Post
    Started by seqadmin, Yesterday, 08:18 AM
    0 responses
    13 views
    0 likes
    Last Post seqadmin  
    Started by seqadmin, Yesterday, 08:04 AM
    0 responses
    12 views
    0 likes
    Last Post seqadmin  
    Started by seqadmin, 06-03-2024, 06:55 AM
    0 responses
    13 views
    0 likes
    Last Post seqadmin  
    Started by seqadmin, 05-30-2024, 03:16 PM
    0 responses
    27 views
    0 likes
    Last Post seqadmin  
    Working...
    X