BEDTools's genomeCoverageBed will calculate strand-specific coverage.
http://code.google.com/p/bedtools/
Header Leaderboard Ad
Collapse
coverage by strand with pysam
Collapse
Announcement
Collapse
No announcement yet.
X
-
coverage by strand with pysam
I'm pretty new to NGS analysis (and this forum), and have been mapping my data with bfast. I'm interested in coverage by strand, and am trying to come up with the best way to do this.
Looking through the pysam documentation
Code:import pysam samfile = pysam.Samfile("ex1.bam", "rb" ) for pileupcolumn in samfile.pileup( 'chr1', 100, 120): print print 'coverage at base %s = %s' % (pileupcolumn.pos , pileupcolumn.n) for pileupread in pileupcolumn.pileups: print '\tbase in read %s = %s' % (pileupread.alignment.qname, pileupread.alignment.seq[pileupread.qpos])
Code:for pileupcolumn in samfile.pileup( 'chr1', 100, 120): for pileupread in pileupcolumn.pileups: if pileupread.alignment.is_reverse: #negative strand hit negCov[ pileupcolumn.pos ] += 1 else: posCov[ pileupcolumn.pos ] += 1
Last edited by desaila; 10-14-2010, 08:09 AM.Tags: None
Latest Articles
Collapse
-
by seqadmin
The introduction of single-cell sequencing has advanced the ability to study cell-to-cell heterogeneity. Its use has improved our understanding of somatic mutations1, cell lineages2, cellular diversity and regulation3, and development in multicellular organisms4. Single-cell sequencing encompasses hundreds of techniques with different approaches to studying the genomes, transcriptomes, epigenomes, and other omics of individual cells. The analysis of single-cell sequencing data i
...-
Channel: Articles
01-24-2023, 01:19 PM -
-
by seqadminSingle-cell sequencing is a technique used to investigate the genome, transcriptome, epigenome, and other omics of individual cells using high-throughput sequencing. This technology has provided many scientific breakthroughs and continues to be applied across many fields, including microbiology, oncology, immunology, neurobiology, precision medicine, and stem cell research.
The advancement of single-cell sequencing began in 2009 when Tang et al. investigated the single-cell transcriptomes...-
Channel: Articles
01-09-2023, 03:10 PM -
ad_right_rmr
Collapse
Leave a comment: