Skip to content

Instantly share code, notes, and snippets.

View caseywdunn's full-sized avatar

Casey Dunn caseywdunn

View GitHub Profile

Working with Conda

First, some nomenclature (see https://conda.io/docs/glossary.html for more):

  • A recipe is a flat directory that has the information needed to build a package
  • A package is a "compressed file that contains everything that a software program needs in order to be installed and run... You manage conda packages with conda."
  • An environment is a "directory that contains a specific collection of conda packages and their dependencies, so they can be maintained and run separately without interference from each other."

A typical workflow:

@caseywdunn
caseywdunn / PCfB_Regular_Expressions.md
Last active September 25, 2017 18:22
Regular expressions intro and examples
@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 / 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