Unconfigured Ad

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • Parharn
    Member
    • Jul 2013
    • 84

    Annotation for S. pombe in GAGE.

    I am trying this workflow: "RNA-Seq Data Pathway and Gene-set Analysis Workflows
    Weijun Luo" but on S. pombe and not human data.
    In part 3.2 it starts with:

    > library(TxDb.Hsapiens.UCSC.hg19.knownGene)

    I need help with finding the corresponding package for S. pombe!

    Please help!
    /Parham
  • bigmw
    Senior Member
    • Aug 2013
    • 124

    #2
    You would need to construct your own TranscriptDb object using function like makeTranscriptDbFromGFF from the GenomicFeatures package:
    library(GenomicFeatures)
    ?makeTranscriptDbFromGFF

    You may download the GFF data for S. pombe genome from:
    PomBase is a comprehensive database for the fission yeast Schizosaccharomyces pombe, providing structural and functional annotation, literature curation and access to large-scale data sets

    I haven’t go through the whole process, but it should work theoretically.

    In addition, makeTranscriptDbFromUCSC and makeTranscriptDbFromBiomart in GenomicFeatures package are more staightfoward for species with genome annotation in UCSC or Biomart database. UCSC does not have annotation data for S. pombe genome. You may try makeTranscriptDbFromBiomart if you confirmed Biomart has the data.
    More details on GenomicFeatures package:
    Extract the genomic locations of genes, transcripts, exons, introns, and CDS, for the gene models stored in a TxDb object. A TxDb object is a small database that contains the gene models of a given organism/assembly. Bioconductor provides a small collection of TxDb objects in the form of ready-to-install TxDb packages for the most commonly studied organisms. Additionally, the user can easily make a TxDb object (or package) for the organism/assembly of their choice by using the tools from the txdbmaker package.

    Comment

    • Parharn
      Member
      • Jul 2013
      • 84

      #3
      Thanks for the tips bigmw, I will give it a try and see how it will goes.

      Cheers,
      /P

      Comment

      • malcook
        Member
        • Sep 2009
        • 24

        #4
        makeTranscriptDbFromBiomart for S. pombe

        I just posted an approach to using Biomart at https://www.biostars.org/p/103251/

        Here's the nub:

        Code:
        txdb<-makeTranscriptDbFromBiomart(
                    ,biomart ="fungi_mart_22"
                    ,dataset = "spombe_eg_gene"
                    ,host="fungi.ensembl.org"
                    )

        Comment

        Latest Articles

        Collapse

        ad_right_rmr

        Collapse

        News

        Collapse

        Topics Statistics Last Post
        Started by SEQadmin2, 06-05-2026, 10:09 AM
        0 responses
        16 views
        0 reactions
        Last Post SEQadmin2  
        Started by SEQadmin2, 06-04-2026, 08:59 AM
        0 responses
        34 views
        0 reactions
        Last Post SEQadmin2  
        Started by SEQadmin2, 06-02-2026, 12:03 PM
        0 responses
        37 views
        0 reactions
        Last Post SEQadmin2  
        Started by SEQadmin2, 06-02-2026, 11:40 AM
        0 responses
        24 views
        0 reactions
        Last Post SEQadmin2  
        Working...