Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
rkawaguc committed Dec 2, 2016
1 parent f039545 commit 272e2b7
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions bin/getbedgraph.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#!/bin/bash
#$ -S /bin/bash
#$ -l h_data=4G
#$ -cwd

input=$1
ref=$2
out=$3
genomeCoverageBed -bg -ibam $input -g $ref -split -bg > ${input}.temp
sed 's/^/chr/' ${input}.temp >$out.bedgraph
rm ${input}.temp

0 comments on commit 272e2b7

Please sign in to comment.