Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
Forked from BICF / Astrocyte / chipseq_analysis
43 commits behind the upstream repository.
plotProfile.sh 250 B
#!/bin/bash
#plotProfile.sh

bws=$(ls *.bw)
gtf=$(ls *.gtf *.bed)

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

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