Skip to content

Instantly share code, notes, and snippets.

View clintval's full-sized avatar

Clint Valentine clintval

View GitHub Profile
@clintval
clintval / dna-ascii.txt
Last active November 17, 2017 22:37
A little ASCII emblem in the terminal, renders better on unicode supported terminals!
${c4} G➖➖C
C➖G
TA
C➖G
G➖➖C
A➖➖➖T
G➖➖➖C
T➖➖A
C➖G
@clintval
clintval / gene-graphic.ipynb
Last active October 12, 2017 23:00
Plotting SeqRecord from Uniprot API Call
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@clintval
clintval / genome-browser.ipynb
Created October 5, 2017 17:31
Sandbox for the genome-browser package
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@clintval
clintval / linux-tips.md
Last active February 8, 2018 03:13
The UNIX commands I forget

Git

Squash three commit branch and update remote branch.

$ git checkout feature_branch
$ git rebase -i HEAD~3
# Choose `pick` for the base.
# Choose `squash` for all others