Seqanswers Leaderboard Ad

Collapse

Announcement

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

  • HTSeq to calculate strand specific coverage of pe reads

    I try to get strand specific coverage for paired-end RNA reads (using the first read in pair as the counting strand) from a sam-file (sorted by readname).
    So far i found a solution using R, but for larger files (starting from 5 Gbyte), its just not feasible to do it with R as it takes ages.
    By looking at HTSeq which can handle paired-end reads as bundles, i thought i could get strand specific coverage using the HTSeq.pair_SAM_alignments() method but didnt succeed so far...

    Code:
    import HTSeq
    import pysam
    import itertools
    
    sam_reader = HTSeq.SAM_Reader( "test.sam")
    
    cover = HTSeq.GenomicArray( "auto", stranded=True, typecode='i' )
    
    for bundle in HTSeq.pair_SAM_alignments( sam_reader, bundle=True ):
            if len(bundle) != 1:
                    continue
            left_almnt, right_almnt = bundle[0]  # extract pair
            if not left_almnt.aligned and right_almnt.aligned:
                    continue
    
            cover[ left_almnt.iv ] += 1 
    
           #left_almnt equals left read from 5' end of pair NOT first read in pair
    
    cover.write_bedgraph_file( "test-plus.wig", "+" )
    cover.write_bedgraph_file( "test-minus.wig", "-" )
    This gives me the strand specific coverage of the LEFT reads in pair.

    I would like to:
    - Find FIRST read in pair
    - get its strand direction and change its mate's (LAST read in pair) strand direction to that of the FIRST read in pair
    -count coverage of FIRST and LAST read in pair according to strand direction

    Could anyone help me help with this task?
    Maybe someone could show how to find FIRST read in pair with HTSeq?

    Thank you,
    Michel

  • #2
    Why bother scripting it when htseq-count already does that?

    Comment


    • #3
      I thought htseq-count is for counting reads in features.
      I would like to have per base coverage not counts per feature.
      Or you mean by feeding a per-base-gff file as feature and do the counting to get coverage?

      Comment


      • #4
        Ah, I misunderstood what you wanted. I'm not sure that HTSeq provides all of the interface that you want. I'm sure you can do that strictly with pysam, though, at least unless your reads are coordinate sorted.

        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:06 AM
        0 responses
        16 views
        0 likes
        Last Post seqadmin  
        Started by seqadmin, 04-30-2024, 12:17 PM
        0 responses
        19 views
        0 likes
        Last Post seqadmin  
        Started by seqadmin, 04-29-2024, 10:49 AM
        0 responses
        23 views
        0 likes
        Last Post seqadmin  
        Started by seqadmin, 04-25-2024, 11:49 AM
        0 responses
        28 views
        0 likes
        Last Post seqadmin  
        Working...
        X