Seqanswers Leaderboard Ad

Collapse

Announcement

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

  • Help with induced genes using a two-factor model

    Hi.

    We would like to know which genes are induced for a model with 2 genotypes (Ga and Gb) and 2 treatments (T1 and T2). We are searching for genes induced in Ga under T2 treatment.

    MODEL:
    ____| T1 | T2 |
    Ga |3 rep.|2 rep.|
    Gb |3 rep. |2 rep.|

    DATA ANALYSIS:
    Using DESeq2 we performed the following analysis:

    counts: alignment and count from Rsubread

    coldata:
    condition genotype
    M3_C1 T1 Gb
    M3_C2 T1 Gb
    M3_C3 T1 Gb
    S3_C1 T2 Gb
    S3_C2 T2 Gb
    M3_W1 T1 Ga
    M3_W2 T1 Ga
    M3_W3 T1 Ga
    S3_W2 T2 Ga
    S3_W3 T2 Ga

    Code:
    #DESeq2 pipeline
    
    dds <-DESeqDataSetFromMatrix(countData=counts,
    colData=coldata,
    design=~condition+genotype+condition:genotype)
    
    dds <-DESeq(dds)
    
    resultsNames(dds)
    [1] "Intercept"                   "condition_T2_vs_T1"
    [3] "genotype_Ga_vs_Gb"       "conditionT2.genotypeGa"
    Extracting "conditionT2.genotypeGa" with the function results (dds) give us a set of genes. After selecting genes with padj<0.05 and log2foldchange>1.5, there are some genes induced more in T1 than T2. Other genes are more induced more in Gb than Ga.

    So, I tried the next analysis:
    Code:
    resG <-results(ddsR,contrast=list("conditionT2.genotypeGa","genotype_Ga_vs_Gb"))
    resT <-results(ddsR,contrast=list("conditionT2.genotypeGa","condition_T2_vs_T1"))
    From resG and resT we selected only padj<0.05 and log2foldchange>1.5 genes

    resG included some genes induces in T1 while resT included some genes induces in Gb. We identified genes which are present in both gene lists expecting genes induced in Ga under T2.

    QUESTIONS:

    Now we would like to know whether the data analysis was performed correctly.
    Is there a better way to carry out the data analysis?

    Thank you

  • #2
    I'll just spell out what these results tables contain:

    Code:
    res1 = results(dds, name="conditionT2.genotypeGa")
    are the genes for which there is a different treatment effect for the two genotypes (or equivalently, a different genotype effect for the two treatments)

    Code:
    res2 = results(dds,contrast=list("conditionT2.genotypeGa","genotype_Ga_vs_Gb"))
    is the genotype effect for the treatment 2 group

    Code:
    res3 = results(dds,contrast=list("conditionT2.genotypeGa","condition_T2_vs_T1"))
    is the treatment effect for the genotype Ga group

    We are searching for genes induced in Ga under T2 treatment.
    These genes are contained in res2.

    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...
      Yesterday, 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, Yesterday, 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
    29 views
    0 likes
    Last Post seqadmin  
    Working...
    X