Unconfigured Ad

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • alyamahmoud
    Member
    • Nov 2013
    • 29

    tximport for salmon output

    I am trying to use tximport to analyze salmon output, but I am stuck with the error below and not sure which files are the problematic ones

    Code:
    summarizing abundance
    summarizing counts
    summarizing length
    Error: all(names(aveLengthSampGene) == rownames(lengthMat)) is not TRUE
    In addition: Warning message:
    In names(aveLengthSampGene) == rownames(lengthMat) :
      longer object length is not a multiple of shorter object length
    this is how I run tximport:
    Code:
    txi.salmon <- tximport(files, type = "salmon", tx2gene = tx2gene, reader = read_tsv)

    Code:
    sessionInfo()
    R version 3.3.1 (2016-06-21)
    Platform: x86_64-apple-darwin13.4.0 (64-bit)
    Running under: OS X 10.9.5 (Mavericks)
    
    locale:
    [1] en_US.UTF-8/en_US.UTF-8/en_US.UTF-8/C/en_US.UTF-8/en_US.UTF-8
    
    attached base packages:
    [1] stats     graphics  grDevices utils     datasets  methods   base     
    
    other attached packages:
    [1] readr_1.0.0        tximport_1.0.3     tximportData_1.0.2
    
    loaded via a namespace (and not attached):
    [1] assertthat_0.1 tools_3.3.1    tibble_1.1     Rcpp_0.12.6    tcltk_3.3.1
  • sulicon
    Member
    • Aug 2010
    • 41

    #2
    I happened to meet exactly the same error this morning. It turns out there is something "wrong" in the transcript to gene mapping (tx2gene). I am using GENCODE mouse v10 transcriptome and the tx2gene mapping file provided by GENCODE have lines like this:

    ENSMUST00000023648.5 4930553J12Rik
    ENSMUST00000023648.5 Krtap15
    ENSMUST00000187823.1 4930553J12Rik
    ENSMUST00000187823.1 Krtap15

    The same transcript is mapped to two gene symbols. I solved this issue by simply removing the lines with "4930553J12Rik". Hope this helps

    Comment

    • granger
      Junior Member
      • Mar 2011
      • 7

      #3
      Thanks sulicon, that helped.
      btw a quick way to remove those rows in R:
      Code:
      tx2gene <- tx2gene[!duplicated(tx2gene$ens_id_version), ]

      Comment

      • peromhc
        Senior Member
        • Sep 2009
        • 108

        #4
        Isn't aggregating the counts from multiple transcripts to a single gene kinda the point of tximport? Seems like removing the duplicate gene id's is removing important information.


        Originally posted by granger View Post
        Thanks sulicon, that helped.
        btw a quick way to remove those rows in R:
        Code:
        tx2gene <- tx2gene[!duplicated(tx2gene$ens_id_version), ]

        Comment

        • granger
          Junior Member
          • Mar 2011
          • 7

          #5
          @peromhc Yes it is, but the problem with the above tx2gene mapping is that it maps one transcript to multiple genes. Best is to keep track of gene ids removed.

          A similar problem I came across: multiple ENS gene ids which encode the same gene product (e.g. have the same HUGO name). Thousands of HUGO genes have multiple ENS ids and that can be a problem.

          Comment

          Latest Articles

          Collapse

          • mylaser
            Reply to Advanced Sequencing Platforms Tackle Neuroscience’s Toughest Genomics Problems
            by mylaser
            Kheloyar – Everything You Need to Know About Kheloyaar Login and Kheoyar Id
            If you are looking for an online gaming platform that offers a user-friendly experience, Kheloyar has become a name that many users search for. Whether you're interested in creating a new account, accessing your dashboard through Kheloyaar Login, or learning how to obtain a Kheoyar Id, understanding the platform's features and account process is essential.
            This guide explains everything you need to know about...
            Yesterday, 01:13 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
          • SEQadmin2
            Cancer Drug Resistance: The Lingering Barrier to Rising Survival
            by SEQadmin2



            Cancer survival rates have significantly increased in the last few decades in the United States, reaching a combined 70% 5-year survival rate by 2021. Behind this number, there are years of research to find new therapies, drug targets, and early detection methods. But there is one core challenge that keeps slowing down these advances, and it’s about drug resistance.

            There is no single reason why many patients don’t respond to treatment as expected. Cancer is...
            07-08-2026, 05:17 AM

          ad_right_rmr

          Collapse

          News

          Collapse

          Topics Statistics Last Post
          Started by SEQadmin2, 07-09-2026, 10:04 AM
          0 responses
          19 views
          0 reactions
          Last Post SEQadmin2  
          Started by SEQadmin2, 07-08-2026, 10:08 AM
          0 responses
          11 views
          0 reactions
          Last Post SEQadmin2  
          Started by SEQadmin2, 07-07-2026, 11:05 AM
          0 responses
          26 views
          0 reactions
          Last Post SEQadmin2  
          Started by SEQadmin2, 07-02-2026, 11:08 AM
          0 responses
          31 views
          0 reactions
          Last Post SEQadmin2  
          Working...