Skip to content

Instantly share code, notes, and snippets.

View rikrdo89's full-sized avatar

Ricardo Linares rikrdo89

View GitHub Profile
@rikrdo89
rikrdo89 / narrowPeak2bb.sh
Created June 2, 2023 12:13 — forked from taoliu/narrowPeak2bb.sh
UCSC narrowPeak to bigBed
#!/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
@rikrdo89
rikrdo89 / shiny-vision-custom.css
Created March 29, 2023 23:31 — forked from shaun-jacks/shiny-vision-custom.css
R Shiny custom.css style of Shiny Dashboard. Code inspired by user aagarw30 repo
/* 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;