Seqanswers Leaderboard Ad

Collapse

Announcement

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

  • htseq-count: how to use multiple features?

    From the documentation I can only find how to select a certain type of feature for counting, like "exon" (default) or "ncRNA".

    Is there also a way to select multiple features?
    I'm using it currently for bacterial transcriptomics and ncRNA are of increasing importance here. Currently, I still need to run the script twice on different features and merge the results afterwards.

    While this actually works fine, it would be simpler to just tell htseq-count to look for multiple features at the same time.

    Any hints on how to do this?

  • #2
    There isn't, but it would be simple to just modify the annotation file that you're using to just collapse exon and ncRNA into a single feature. Something like the following would work:

    Code:
    awk '{if($3 == "exon" || $3 == "ncRNA") {$3="interesting_feature"}; print $0}' foo.gtf > foo.modified.gtf

    Comment


    • #3
      Originally posted by dpryan View Post
      There isn't, but it would be simple to just modify the annotation file that you're using to just collapse exon and ncRNA into a single feature. Something like the following would work:

      Code:
      awk '{if($3 == "exon" || $3 == "ncRNA") {$3="interesting_feature"}; print $0}' foo.gtf > foo.modified.gtf
      OK, sure. But then, there wouldn't be the option to separate the feature types any more. Unless I maintain multiple annotation files, of course.

      Seems like I have to stick to workarounds.

      Comment


      • #4
        A work around might prove simpler, yes. featureCounts also doesn't seem to support this, though I suppose you could just alter the source code for either of them to add this functionality.

        Comment

        Latest Articles

        Collapse

        • seqadmin
          Recent Advances in Sequencing Analysis Tools
          by seqadmin


          The sequencing world is rapidly changing due to declining costs, enhanced accuracies, and the advent of newer, cutting-edge instruments. Equally important to these developments are improvements in sequencing analysis, a process that converts vast amounts of raw data into a comprehensible and meaningful form. This complex task requires expertise and the right analysis tools. In this article, we highlight the progress and innovation in sequencing analysis by reviewing several of the...
          05-06-2024, 07:48 AM
        • 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

        ad_right_rmr

        Collapse

        News

        Collapse

        Topics Statistics Last Post
        Started by seqadmin, Yesterday, 02:46 PM
        0 responses
        11 views
        0 likes
        Last Post seqadmin  
        Started by seqadmin, 05-07-2024, 06:57 AM
        0 responses
        13 views
        0 likes
        Last Post seqadmin  
        Started by seqadmin, 05-06-2024, 07:17 AM
        0 responses
        17 views
        0 likes
        Last Post seqadmin  
        Started by seqadmin, 05-02-2024, 08:06 AM
        0 responses
        23 views
        0 likes
        Last Post seqadmin  
        Working...
        X