Skip to content

Instantly share code, notes, and snippets.

View caseywdunn's full-sized avatar

Casey Dunn caseywdunn

View GitHub Profile
@caseywdunn
caseywdunn / docker.md
Last active August 10, 2023 18:13
Docker cheat sheet

Docker cheat sheet

Introduction

Docker is a tool for bundling together applications and their dependencies into images that can than be run as containers on many different types of computers.

Docker and other containerization tools are useful to scientists because:

  • It greatly simplifies distribution and installation of complex work flows that
@caseywdunn
caseywdunn / genomics2016.md
Last active October 30, 2016 20:08
Notes from my October 7, 2016 talk at the Boston Evolutionary Genomics Supergroup Meeting
@caseywdunn
caseywdunn / macos_virtualenv.sh
Created June 24, 2016 18:17
Setup and examples of virtualenv on osx
# Setting up virtualenv on macOS Yosemite
brew update
brew upgrade
which python # check location of system version
brew install python
brew install freetype # Needed by some python packages
brew install libxml2 # Needed by some python packages
pip install virtualenv virtualenvwrapper pytest
@caseywdunn
caseywdunn / TREE_tree.tre
Created May 14, 2015 02:38
Newick representation of the phylogenetic tree in Figure 1 of our TREE review on animal phylogenetics (http://dx.doi.org/10.1146/annurev-ecolsys-120213-091627)
(
Ctenophora,
(
Porifera,
(
Placozoa,
(
Cnidaria,
(
Xenacoelomorpha,
@caseywdunn
caseywdunn / ubuntu_amazon_tarball.sh
Last active August 29, 2015 13:57
Agalma installation scripts
# This is a full set of commands to install [Agalma](https://bitbucket.org/caseywdunn/agalma)
# from the on Ubuntu Server from the tarballs. It has been tested on the AWS Ubuntu Server AMI.
#
sudo apt-get update
sudo apt-get install make
wget https://bitbucket.org/caseywdunn/biolite/raw/master/install_biolite_ubuntu.sh
sudo sh install_biolite_ubuntu.sh
wget https://bitbucket.org/caseywdunn/agalma/raw/master/install_agalma_ubuntu.sh