Announcement

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

  • Can I get read counts by doing this???

    I want to quantify the reads I have from several .bam files from Tophat.

    I used two different annotations(one at a time):
    1: CuffMerge generated GTF file;
    2: UCSC genome annotation
    I made a transcript data base by using Bioconductor package "GenomicFeature" function "makeTranscitpDbFromGFF" or "makeTranscitpDbFromUCSC"

    Then I make a object that store the exon or transcripts information, by using Rsamtools package function "exonsBy" or "transcriptsBy"

    Then I do the overlap between my .bam file and the previous object ("countOverlaps")

    Anyone see any problems by doing what I did?

    I took this as a reference:

    Please let me know what could go wrong with this~

    Thanks a lot!

  • #2
    Be careful using countOverlaps:

    Code:
    library(IRanges)
    subject <- IRanges(c(1, 4, 9), c(5, 7, 10))
    query <- IRanges(c(2, 2, 10), c(2, 3, 12))
    #If this were RNAseq data, the output should be 0 0 1
    countOverlaps(query, subject)
    You'll see that the counts would be wrong for RNAseq data. You might just use featureCounts or htseq-counts.

    Comment

    Latest Articles

    Collapse

    • seqadmin
      Advanced Methods for the Detection of Infectious Disease
      by seqadmin




      The recent pandemic caused worldwide health, economic, and social disruptions with its reverberations still felt today. A key takeaway from this event is the need for accurate and accessible tools for detecting and tracking infectious diseases. Timely identification is essential for early intervention, managing outbreaks, and preventing their spread. This article reviews several valuable tools employed in the detection and surveillance of infectious diseases.
      ...
      11-27-2023, 01:15 PM
    • seqadmin
      Strategies for Investigating the Microbiome
      by seqadmin




      Microbiome research has led to the discovery of important connections to human and environmental health. Sequencing has become a core investigational tool in microbiome research, a subject that we covered during a recent webinar. Our expert speakers shared a number of advancements including improved experimental workflows, research involving transmission dynamics, and invaluable analysis resources. This article recaps their informative presentations, offering insights...
      11-09-2023, 07:02 AM

    ad_right_rmr

    Collapse

    News

    Collapse

    Topics Statistics Last Post
    Started by seqadmin, Today, 10:48 AM
    0 responses
    11 views
    0 likes
    Last Post seqadmin  
    Started by seqadmin, Yesterday, 08:26 AM
    0 responses
    11 views
    0 likes
    Last Post seqadmin  
    Started by seqadmin, Yesterday, 08:12 AM
    0 responses
    12 views
    0 likes
    Last Post seqadmin  
    Started by seqadmin, 11-27-2023, 08:12 AM
    0 responses
    20 views
    0 likes
    Last Post seqadmin  
    Working...
    X