Seqanswers Leaderboard Ad

Collapse

Announcement

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

  • Cufflinks gets stuck at chrUm fron (rat) rn4 mapping

    Dear all,
    I do not mean to cross post, but maybe starting a new thread will help to solve this issue.

    I read some posts from Bioinformatics section searching for a solution to an issue I'm suffering while using Cufflinks. I try to run it on a series of tophat bam files obtained from an alignment to the Rattus norvegicus reference genome (rn4).
    Cufflinks hangs at 80% of the first analysis step while trying to match a result against the ChrUn reference:

    "Inspecting bundle chrUn:427619-427681 with 20 reads"

    It stays there for hours as if the program was running, but doesn't do anything...
    I've produced a "ChrUn free" bowtie index in order to avoid this bug, but it still gets stuck at the same reads group.

    Can somebody please tell me how to avoid this error or how to solve it? Has this (or any other equivalent issue) been a common problem anyone else encountered? Any solution or advice?

    Thanks in advance.

    JL
    Last edited by Jluis; 07-24-2012, 06:08 AM. Reason: ortography

  • #2
    I have a similar problem now, did you find a solution?

    Comment


    • #3
      @caballien

      I had to clean my reference file (.gtf) getting rid of any "chrM" or "_random" line. To achieve this I used a very simple Perl script (I'm sure there are faster ways to do it using bash, but ...)
      Code:
      #!usr/bin/perl
      use strict;
      use warnings;
      use Getopt::Long;
      #usage example:perl /path_to/chrM_cleaner.pl -r /path_to/file.gtf
      
      my ( $in);
      GetOptions(
          'reference=s'     => \$in,
           );
      
      print "$in \n";
      
      open INFILE, '<',  "$in" or die ("Can't open INFILE ERROR: $!\n");
      #open a modified reference file to write
      open OUT, '>', "$in"."_2.gtf" or die ("Can't open OUTFILE ERROR: $!\n");
      
      while (<INFILE>) {
            if ($_=~/chrM/){ next;}#skips chrM lines
      
            elsif ($_=~/_random/){next;}#skips chr _random lines
      
            else{
      	    chomp($_);
                  print OUT "$_\n";#prints the other lines to the modified reference file
            }
      }
      I hope this works for you also...
      I'm very sorry for this delay in answering...

      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, 04-11-2024, 12:08 PM
      0 responses
      59 views
      0 likes
      Last Post seqadmin  
      Started by seqadmin, 04-10-2024, 10:19 PM
      0 responses
      57 views
      0 likes
      Last Post seqadmin  
      Started by seqadmin, 04-10-2024, 09:21 AM
      0 responses
      53 views
      0 likes
      Last Post seqadmin  
      Started by seqadmin, 04-04-2024, 09:00 AM
      0 responses
      56 views
      0 likes
      Last Post seqadmin  
      Working...
      X