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
/* header title font */ | |
.main-header .logo { | |
font-family: "helvetica", serif, Times, "Times New Roman"; | |
font-weight: bold; | |
font-size: 24px; | |
} | |
/* background color of header (logo part) */ | |
.skin-blue .main-header .logo { | |
background-color: #252525; |
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
#!/bin/bash | |
# set the path to as file for narrowPeak. Locate it in your UCSC source code directory or google... | |
asfile=/data/db/UCSC_sqls/encode/narrowPeak.as | |
which bedToBigBed &>/dev/null || { echo "bedToBigBed not found! Download: <http://hgdownload.cse.ucsc.edu/admin/exe/>"; exit 1; } | |
if [ $# -lt 2 ];then | |
echo "Need 2 parameters! <narrowPeak> <chrom info>" | |
exit |