Seqanswers Leaderboard Ad

Collapse

Announcement

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

  • Does TopHat support Unix piping?

    Hi,

    I know Bowtie supports piping (although not so convenient to use for paired-end reads), and I am wondering if TopHat does the same. I tried something like "gzip -dc $fq | tophat $genome -" but it doesn't work. Did I do anything wrong? Or if there are other ways to run TopHat without decompressing the sequence files first? Please feel free to share your tips/suggestions. Thanks a lot!

    -- Leo
    Last edited by HTS; 10-05-2010, 08:08 AM.

  • #2
    I would also like to know... I tried some bash process substitution, nothing seems to be working.

    Comment


    • #3
      A trick for using pipes with programs that don't normally accept anything on standard input is to specify the input file as /proc/self/fd/0. So for tophat that would be:

      Code:
      gzip -dc foo.fastq.gz | tophat genome /proc/self/fd/0
      Of course you're out of luck if you have paired-end reads.

      Note that this is Linux-specific. It won't work on MacOS and I'm not sure about other Unixes.

      Comment


      • #4
        Hm, that's giving me the same error that the process substitution did. Let me know if it works for you. Is this a shell-specific thing?

        Comment


        • #5
          Ah, it looks like tophat needs to seek() in the fastq file which means streamed input won't work at all. Sorry, looks like this does need to be uncompressed to disk after all.

          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, Yesterday, 08:47 AM
          0 responses
          16 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
          60 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