I hereby claim:
- I am ekg on github.
- I am ekg (https://keybase.io/ekg) on keybase.
- I have a public key ASBqVDBiA6DmXf7cj1k6CHy4DTYQnbAO-C4vZJcFZFwRlAo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
foxdot-cli.py
in the same directory as the FoxDot installaton (in case you're using virtualenv
, otherwise comment from lines 5 to 7)foxdot-mode.el
to ~/.emacs.d/lisp
(defvar foxdot-cli-path "/path/to/foxdot-cli/")
in your ~/.emacs
fileM-x load-library
and complete with foxdot-mode
C-c C-f
or M-x foxdot-start
to startC-c C-e
or M-x foxdot-execute
to evaluate a line or a block of code#!/usr/bin/python | |
import sys; | |
import pysam | |
bamFile = sys.argv[1]; | |
bamFP = pysam.Samfile(bamFile, "rb"); |