Skip to content

Instantly share code, notes, and snippets.

@jl32587
jl32587 / bdg2bw
Created June 17, 2014 16:47 — forked from taoliu/bdg2bw
#!/bin/bash
# check commands: slopBed, bedGraphToBigWig and bedClip
which slopBed &>/dev/null || which bedtools &>/dev/null || { echo "slopBed/bedtools not found! Download bedTools: <http://code.google.com/p/bedtools/>"; exit 1; }
which bedGraphToBigWig &>/dev/null || { echo "bedGraphToBigWig not found! Download: <http://hgdownload.cse.ucsc.edu/admin/exe/>"; exit 1; }
which bedClip &>/dev/null || { echo "bedClip not found! Download: <http://hgdownload.cse.ucsc.edu/admin/exe/>"; exit 1; }
# end of checking