Skip to content

Instantly share code, notes, and snippets.

View Rhinogradentia's full-sized avatar

Nadine Rhinogradentia

  • Vienna (Austria)
View GitHub Profile
@felixknorre
felixknorre / guide.md
Last active August 18, 2024 11:55
HOW TO CREATE A MINECRAFT FORGE/CURSEFORGE SERVER WITH DOCKER
@taoliu
taoliu / bdg2bw
Last active November 3, 2024 17:01
bedGraph to bigWig
#!/bin/bash
# check commands: slopBed, bedGraphToBigWig and bedClip
which bedtools &>/dev/null || { echo "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