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
    Best Practices for Single-Cell Sequencing Analysis
    by seqadmin



    While isolating and preparing single cells for sequencing was historically the bottleneck, recent technological advancements have shifted the challenge to data analysis. This highlights the rapidly evolving nature of single-cell sequencing. The inherent complexity of single-cell analysis has intensified with the surge in data volume and the incorporation of diverse and more complex datasets. This article explores the challenges in analysis, examines common pitfalls, offers...
    06-06-2024, 07:15 AM
  • seqadmin
    Latest Developments in Precision Medicine
    by seqadmin



    Technological advances have led to drastic improvements in the field of precision medicine, enabling more personalized approaches to treatment. This article explores four leading groups that are overcoming many of the challenges of genomic profiling and precision medicine through their innovative platforms and technologies.

    Somatic Genomics
    “We have such a tremendous amount of genetic diversity that exists within each of us, and not just between us as individuals,”...
    05-24-2024, 01:16 PM

ad_right_rmr

Collapse

News

Collapse

Topics Statistics Last Post
Started by seqadmin, Yesterday, 06:58 AM
0 responses
13 views
0 likes
Last Post seqadmin  
Started by seqadmin, 06-06-2024, 08:18 AM
0 responses
20 views
0 likes
Last Post seqadmin  
Started by seqadmin, 06-06-2024, 08:04 AM
0 responses
18 views
0 likes
Last Post seqadmin  
Started by seqadmin, 06-03-2024, 06:55 AM
0 responses
13 views
0 likes
Last Post seqadmin  
Working...
X