Here is a simple Python script to zero fill Samtools depth output:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sys | |
filename=sys.argv[1] | |
start=int(sys.argv[2]) | |
stop=int(sys.argv[3]) | |
data=open(filename).readlines() | |
out=open(filename.strip(".txt")+".depth", "w") | |
for i in range(len(data)): | |
chr,bp_str,count=data[i].strip().split() | |
bp=int(bp_str) | |
if start<bp: | |
for j in range(start,bp): | |
print >> out, chr+"\t"+str(j)+"\t0" | |
print >> out, chr+"\t"+bp_str+"\t"+str(count) | |
start=bp+1 | |
elif start==bp: | |
print >> out, chr+"\t"+bp_str+"\t"+str(count) | |
start=bp+1 | |
if start<stop: | |
for j in range(start,stop+1): | |
print >> out, chr+"\t"+str(j)+"\t0" | |
out.close() |
And below is an example of how to use it:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Define BAM Region | |
chr=1 | |
start=247000 | |
stop=257000 | |
coord=`echo "chr$chr:$start-$stop"` | |
# Get Depth for BAM Region | |
samtools depth -r $coord id_1.bam > id_1.txt | |
samtools depth -r $coord id_2.bam > id_2.txt | |
samtools depth -r $coord id_3.bam > id_3.txt | |
# Zero Fill Depth Output | |
python depth_fill.py id_1.txt $start $stop | |
python depth_fill.py id_2.txt $start $stop | |
python depth_fill.py id_3.txt $start $stop | |
# Merge Depth Files | |
cut -f 3 id_2.depth > id_2.temp | |
cut -f 3 id_3.depth > id_3.temp | |
cat id_1.depth id_2.temp id_3.temp > all_ids.depth | |
No comments:
Post a Comment