This file contains hidden or 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
#!/usr/bin/env python | |
""" | |
Turn a sequence file into a PNG, with a specified number of pixels per symbol. | |
Gaps are shown in light gray. | |
Unknown symbols, including N and X, are shown in pink. | |
Requires matplotlib, seqmagick, and their dependencies. | |
""" |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or 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/sh | |
set -e | |
set -o | |
sudo apt-get update | |
sudo apt-get upgrade -y | |
sudo apt-get install -y \ | |
autojump \ |
This file contains hidden or 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
r () { | |
if [[ -n $TMUX ]] | |
then | |
NEW_SSH_AUTH_SOCK=`tmux showenv|grep "^SSH_AUTH_SOCK"|cut -d = -f 2` | |
if [[ -n $NEW_SSH_AUTH_SOCK ]] && [[ -S $NEW_SSH_AUTH_SOCK ]] | |
then | |
echo "New auth sock: $NEW_SSH_AUTH_SOCK" | |
SSH_AUTH_SOCK=$NEW_SSH_AUTH_SOCK | |
fi | |
NEW_DISPLAY=`tmux showenv|grep "^DISPLAY"|cut -d = -f 2` |
OlderNewer