Seqanswers Leaderboard Ad

Collapse

Announcement

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

  • Counting coverage bases

    Hello,

    I am using pysam to count bases from bam file and verifying with igv tool. The counts are mostly consistent except that at some positions, pysam seem to call some bases significantly more.

    For example: I get: A/T/G/C 154/1/0/2229 with pysam for position 27
    while get: A/T/G/C 6/1/0/2227 in igv for the same position. Other positions are very comparable. Any idea?

    Any other suggestion on programs that allow to count coverage bases in bam file will be appreciated.

    Thank you.

    -----

    my code for counting bases with pysam (i am just suspecting if it is doing something funny at some positions):

    for pileupcolumn in samfile.pileup( 'Homo',1,17000): # for mitochondria
    count_a, count_g, count_c, count_t = 0,0,0,0
    #print 'coverage at base %s = %s' % (pileupcolumn.pos , pileupcolumn.n)

    for pileupread in pileupcolumn.pileups:

    if pileupread.alignment.seq[pileupread.qpos] == 'A':
    count_a += 1
    elif pileupread.alignment.seq[pileupread.qpos] == 'G':
    count_g += 1
    elif pileupread.alignment.seq[pileupread.qpos] == 'C':
    count_c += 1
    elif pileupread.alignment.seq[pileupread.qpos] == 'T':
    count_t += 1
    else:
    print 'pass'

    writeoutput.writerow( [pileupcolumn.pos +1,count_a,count_t,count_g,count_c])

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...
    Yesterday, 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
58 views
0 likes
Last Post seqadmin  
Started by seqadmin, 04-10-2024, 10:19 PM
0 responses
53 views
0 likes
Last Post seqadmin  
Started by seqadmin, 04-10-2024, 09:21 AM
0 responses
45 views
0 likes
Last Post seqadmin  
Started by seqadmin, 04-04-2024, 09:00 AM
0 responses
55 views
0 likes
Last Post seqadmin  
Working...
X