Unconfigured Ad

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • FoRsUs
    Junior Member
    • Jul 2011
    • 3

    #1

    TopHat/Cufflinks without replicates

    Hi everyone,

    I want to share my pipeline to analyze RNAseq data without replicates because I'm not finding the expected results, and I ask for help in order to improve it.

    My experimental design consist of a time-series experiment without replicates and 2 time-points: T0 and 6h hours of treatment using r5020 hormone (R6h).
    So for this analysis I have 2 samples that I want to compare.

    Furthermore I followed TopHat/cufflinks nature protocol paper and found less than expected differentially expressed genes at R6h compared to T0.
    In our lab we know by previous microarray experiments that after 6h of treatment we could end up with almost 4000 regulated genes, but using RNAseq analysis I found more or less 600 regulated genes.

    A good point of this is that genes found by RNAseq data seems to have a good correlation with microarray data, but I was expecting to find more genes.

    After this results I search a bit on internet to see which kind of answers people publish related to this, but didn't find any clear answer.
    I was wondering if the absence of replicates could affect dramatically the differential gene analysis, so I want to ask your opinion about this.

    And also I paste here the bash code I use to run tophat/cufflinks to know if i'm doing it right (I hope so ).

    Finally, Hope this question could serve anybody else doing RNAseq analysis without replicates

    Code:
    #!/bin/bash
    
    cuffdiff=/soft/bin/cuffdiff
    cufflinks=/soft/bin/cufflinks
    cuffmerge=/soft/bin/cuffmerge
    genes=~/daniel/tracks/human_genome_19/Homo_sapiens/UCSC/hg19/Annotation/Genes/genes.gtf
    genome=~/daniel/tracks/human_genome_19/Homo_sapiens/UCSC/hg19/Sequence/Bowtie2Index/genome
    genomeFA=~/daniel/tracks/human_genome_19/Homo_sapiens/UCSC/hg19/Sequence/WholeGenomeFasta/genome.fa
    mask=~/projects/rna-seq/large/analysis_4/mask.gtf
    tophat=/soft/bin/tophat
    transcriptome=~/daniel/RNAseq/New_analysis/Guille_samples/mapping-assembly/transcriptome_data/known
    
    ## T0 sample analysis
    $tophat -p 8 -G $genes --transcriptome-index=$transcriptome -o T0 --no-coverage-search -g 10 -r 98 $genome T0.read1 T0.read2
    $cufflinks -p 8 -o T0 -M $mask --no-update-check T0/T0.accepted_hits.bam 
    
    ## R6h sample analysis
    $tophat -p 8 -G $genes --transcriptome-index=$transcriptome -o R6h --no-coverage-search -g 10 -r 98 $genome R6h.read1 R6h.read2
    $cufflinks -p 8 -o R6h -M $mask --no-update-check R6h/R6h.accepted_hits.bam 
    
    ## Merge assemblies
    $cuffmerge -g $genes -s $genomeFA -p 8 assemblies.txt
    
    ## Start differential expression analysis
    $cuffdiff -o diff_out -b $genomeFA -p 8 -L T0,R6h -u merged_asm/merged.gtf T0/T0.accepted_hits.bam R6h/R6h.accepted_hits.bam -T -M $mask
    
    ##-------- CummeRbund R analysis ------- ##
    Thanks everybody wish to contribute.
    Last edited by FoRsUs; 02-05-2013, 02:42 AM.
  • dcchauss
    Junior Member
    • Feb 2013
    • 1

    #2
    I believe the problem is that without replicates the estimated variance for each gene is the same for all genes, so you will only get very few statistically significant differentially expressed genes without replicates....there have been many posts on these forums about this..



    Please see this thread: http://seqanswers.com/forums/showthr...cates+cuffdiff
    Last edited by dcchauss; 02-07-2013, 11:20 AM.

    Comment

    Latest Articles

    Collapse

    • SEQadmin2
      Beyond CRISPR/Cas9: Understand, Choose, and Use the Right Genome Editing Tool
      by SEQadmin2



      CRISPR/Cas9 sparked the gene editing revolution for both research and therapeutics.1 But this system still showed severe issues that limited its applications. The most prominent were the heavy reliance on PAM sequences, delivery limitations, double-stranded breaks that prompt unintended edits and cell death, and editing inefficiency (both in targeting and in knock-in reliability).

      Despite this, “CRISPR helped turn genome editing from a specialized technique into
      ...
      07-31-2026, 11:01 AM
    • SEQadmin2
      Proteomic Platforms: How to Choose the Right Analytical Strategy to Improve Detection and Clinical Applications
      by SEQadmin2


      Proteomics platforms are evolving rapidly, with advances in mass spectrometry and affinity-based approaches expanding what researchers can detect and at what scale. As the field moves toward deeper proteome coverage and clinical applications, scientists face an increasingly complex landscape of tools. This article will explore how researchers are navigating these choices to find the right platform for their work.

      The systematic characterization of the human proteome has
      ...
      07-20-2026, 11:48 AM
    • SEQadmin2
      Advanced Sequencing Platforms Tackle Neuroscience’s Toughest Genomics Problems
      by SEQadmin2



      Genomics studies in neuroscience face a special challenge due to the brain’s complexity and scarcity of samples. Mapping changes in cell type and state using conventional next-generation sequencing methods remains challenging. Advances in technologies like single-cell sequencing, spatial transcriptomics, and long-read sequencing have opened the door to deeper studies of the brain and diseases like Alzheimer’s, amyotrophic lateral sclerosis (ALS), and schizophrenia.
      ...
      07-09-2026, 11:10 AM

    ad_right_rmr

    Collapse

    News

    Collapse

    Topics Statistics Last Post
    Started by SEQadmin2, Today, 07:41 AM
    0 responses
    9 views
    0 reactions
    Last Post SEQadmin2  
    Started by SEQadmin2, 08-03-2026, 10:13 AM
    0 responses
    25 views
    0 reactions
    Last Post SEQadmin2  
    Started by SEQadmin2, 07-31-2026, 02:55 AM
    0 responses
    38 views
    0 reactions
    Last Post SEQadmin2  
    Started by SEQadmin2, 07-24-2026, 12:17 PM
    0 responses
    25 views
    0 reactions
    Last Post SEQadmin2  
    Working...