Skip to content
Snippets Groups Projects
plotProfile.sh 238 B
Newer Older
#!/bin/bash
#plotProfile.sh

bws=`ls *.bw`
gtf=`ls *.gtf *.bed`

computeMatrix reference-point \
	--referencePoint TSS \
	-S $bws \
	-R $gtf \
	--skipZeros \
	-o computeMatrix.gz

plotProfile -m computeMatrix.gz \
	-out plotProfile.png \