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
    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
  • seqadmin
    Strategies for Sequencing Challenging Samples
    by seqadmin


    Despite advancements in sequencing platforms and related sample preparation technologies, certain sample types continue to present significant challenges that can compromise sequencing results. Pedro Echave, Senior Manager of the Global Business Segment at Revvity, explained that the success of a sequencing experiment ultimately depends on the amount and integrity of the nucleic acid template (RNA or DNA) obtained from a sample. “The better the quality of the nucleic acid isolated...
    03-22-2024, 06:39 AM

ad_right_rmr

Collapse

News

Collapse

Topics Statistics Last Post
Started by seqadmin, 04-11-2024, 12:08 PM
0 responses
18 views
0 likes
Last Post seqadmin  
Started by seqadmin, 04-10-2024, 10:19 PM
0 responses
22 views
0 likes
Last Post seqadmin  
Started by seqadmin, 04-10-2024, 09:21 AM
0 responses
16 views
0 likes
Last Post seqadmin  
Started by seqadmin, 04-04-2024, 09:00 AM
0 responses
47 views
0 likes
Last Post seqadmin  
Working...
X