Seqanswers Leaderboard Ad

Collapse

Announcement

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

  • Problem annotating results derived from an table of counts

    Dear all,

    I am having problems annotating results from a table of counts obtained using the following R-script code:

    library(Rsamtools)
    library(GenomicFeatures)

    bamlist=list()
    src_files=list.files(pattern="*.bam")

    for(filename in src_files)
    {
    tmp=readBamGappedAlignments(filename)
    bamlist[[length(bamlist)+1]]=GRanges(seqnames=rname(tmp),
    ranges=IRanges(start=start(tmp),end=end(tmp)),
    strand=rep("*",length(tmp)))
    }

    names(bamlist)=src_files

    #--------------------Fetching gene information
    txdb=makeTranscriptDbFromUCSC(genome='mm9',tablename='knownGene')

    #--------------------GRangesList object
    tx_by_gene=transcriptsBy(txdb,'gene')

    #--------------------include reads that overlap exons
    ex_by_gene=exonsBy(txdb,'gene')

    #------------------Finally, we get the number of reads that overlap with each gene

    #Initialize table of counts
    toc=data.frame(rep(NA,length(tx_by_gene)))
    for(i in 1:length(bamlist))
    {
    toc[,i]=countOverlaps(tx_by_gene,bamlist[[i]])
    }
    #Fix up labels
    rownames(toc)=names(tx_by_gene)
    print(ncol(toc))
    print(length(bamlist))
    colnames(toc)=names(bamlist)

    dim(toc)


    head(toc)

    write.table(toc, file="mm9_ToC.tsv",quote=FALSE,sep="\t")



    The thing is that using this reference genome:

    genome='mm9',tablename='knownGene'

    The resulting table of counts shows up this IDs format:

    IDs s1.bam s2.bam

    100009600 121 83
    100009609 0 3
    100009614 0 0
    100012 0 0
    100017 121 79
    100019 37 24


    I can't explain myself which kind of identifier is this and how to convert it to other format that may allow me to infer the Gene Function related to the Gene Id...

    May there be any problem with the code so that the Table of Counts isn't
    generated correctly?

    I'll appreciate any help and/or comments, because it's been a real headache trying to correlate such Ids to any G.O.

  • #2
    The manual for GenomicFeatures says that those should be Entrez gene IDs, which is what I would have guessed from looking at them. That's usually more convenient for downstream processing than using actual gene names, which can overlap.

    Comment


    • #3
      Dear dpryan,

      Thank you very much for your explanation, I'll try to convert those Ids to ensembl and ncbi formats to help bench scientist to correlate them with GO functions.

      Best wishes

      Comment

      Latest Articles

      Collapse

      • 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
      • seqadmin
        Current Approaches to Protein Sequencing
        by seqadmin


        Proteins are often described as the workhorses of the cell, and identifying their sequences is key to understanding their role in biological processes and disease. Currently, the most common technique used to determine protein sequences is mass spectrometry. While still a valuable tool, mass spectrometry faces several limitations and requires a highly experienced scientist familiar with the equipment to operate it. Additionally, other proteomic methods, like affinity assays, are constrained...
        04-04-2024, 04:25 PM

      ad_right_rmr

      Collapse

      News

      Collapse

      Topics Statistics Last Post
      Started by seqadmin, Today, 08:47 AM
      0 responses
      11 views
      0 likes
      Last Post seqadmin  
      Started by seqadmin, 04-11-2024, 12:08 PM
      0 responses
      60 views
      0 likes
      Last Post seqadmin  
      Started by seqadmin, 04-10-2024, 10:19 PM
      0 responses
      59 views
      0 likes
      Last Post seqadmin  
      Started by seqadmin, 04-10-2024, 09:21 AM
      0 responses
      54 views
      0 likes
      Last Post seqadmin  
      Working...
      X