Tuesday, July 17, 2012

Print all variables in a Makefile

.PHONY: printvars printvars: @$(foreach V,$(sort $(.VARIABLES)), $(if $(filter-out environment% default automatic, $(origin $V)),$(warning $V=$($V) ($(value $V)))))

Friday, June 22, 2012

Land of Lisp using SBCL instead of CLISP

The CLISP specialty is used when producing a png from the dot file in Chapter 7.

brew install graphviz

which dot -> /usr/local/bin/dot

(defun dot->png (fname thunk)
  (with-open-file (*standard-output*
           fname
           :direction :output
           :if-exists :supersede)
    (funcall thunk))
  (sb-ext:run-program "/usr/local/bin/dot" (list "-Tpng" "-O" fname)))
view raw LoL_sbcl.md hosted with ❤ by GitHub

Sunday, April 29, 2012

Convert RNA secondary structure (in dot-bracket notation) to forest in pgf/tikz using Haskell

Data for dot-bracket notation (a.k.a. Vienna notation)
> type Viennachar = Char
> type RNAchar = Char
Data for tree structure
> data Tree a = N a (Forest a) deriving (Show,Eq,Ord)
> type Forest a = [Tree a]
Parse dot-bracket notation and build an RNA forest
> build' :: [(Viennachar, RNAchar)] -> Forest RNAchar
> build' [] = []
> build' [('.',a)] = [N a []]
> build' [(')',a)] = error $ "structure not well parenthesized"
> build' [('(',a)] = error $ "structure not well parenthesized"
> build' [( x ,a)] = error $ show x++" symbol not allowed in vienna notation"
> build' (('(',a1):(')',a2):ps) = (N 'P' (open:[close])) : build' ps
> where (open, close) = ((N a1 []), (N a2 []))
>
> build' (('.',a):ps) = (N a []) : build' ps
> build' (('(',o):ps) = (N 'P' ((open:inbracketsrecursion)++[close])) : build' trest
> where (open, close) = ((N o []), (N (snd hrest) []))
> inbracketsrecursion = build' inbrackets
> (hrest, trest) = (head rest, tail rest)
> (inbrackets,rest) = if (l==[]) then error "closing bracket missing" else (head l)
> l = [splitAt k ps| k<-[1..length(ps)], level(take (k+1) (map fst ps))<0 ]
>
> build' ((')',a):ps) = error "no closing bracket expected here"
> build' (( x ,a):ps) = error $ show x++" symbol not allowed in vienna notation"
Print an RNA forest as a list of lines in pgf/tikz tree format
> pprint :: [Tree RNAchar] -> [String]
> pprint ((N x (a:as)):bs) = ("\\begin{scope}[xshift=1em]"):("\\node {"++ [x] ++ "}"):(pprint' (a:as)) ++ ["; "] ++ pprint bs ++ ["\\end{scope}"]
> pprint ((N x []):bs) = ("\\begin{scope}[xshift=1em]"):("\\node {"++ [x] ++ "};") : pprint bs ++ ["\\end{scope}"]
> pprint [] = []
> pprint' ((N x (a:as)):bs) = ("child { node {"++ [x] ++ "} "):(pprint' (a:as)) ++ ["} "] ++ pprint' bs
> pprint' ((N x []):bs) = ("child { node {"++ [x] ++ "} "):"} ": pprint' bs
> pprint' [] = []
Testdata
> test0 = ("GGGGGGCCGCCGGGGAAAAA", "..((..)).((..)).....")
> test = ("GGGGGCGCCGGGG", "..(..).((..))")
Main function
> dotBracketToTikz s = putStr $ unlines $ pprint (build (snd s) (fst s))
Example call in GHCi / hugs
dotBracketToTikz test0

Wednesday, December 14, 2011

Plot funny conditional stuff in gnuplot

plot "acc_len_acc_old_new11.txt" using 2:4:(+0):(-($4-$5)):((($2<=1)||($4<=1)||($4==$5))?(1/0):(($4 > $5) ? (rgb("0","255","0")): (rgb("255","0","0")))) notitle with vectors lc rgb variable,"acc_len_acc_old_new11.txt" using 2:5:(+0):(-($4-$5)):(($4!=$5)?(1/0):(($4 > $5) ? (rgb("0","255","255")):(rgb("255","0","255")))) notitle with vectors lc rgb variable, "acc_len_acc_old_new11.txt" using 2:(($4==$5 ? 5 : 1/0)) notitle with points pt 13 lc 13

Wednesday, December 7, 2011

PDFs to text to make them searchable on commandline

linse@elektrobier:~/Documents/cloned/diss/paper$ for f in *.pdf; do pdftotext $f; done

Sunday, November 13, 2011

NRG to ISO

Assuming the NRG is just a single session ISO CD image, you can just remove the first few kb with dd from Terminal.app
Code:

dd if=image.nrg of=cdrom.iso bs=512 skip=600

Friday, November 11, 2011

Game states

final int STATE_XBEE_INIT = 0;
final int STATE_PLAYER_LIST = 1;
final int STATE_LEVEL_SELECT = 2;
final int STATE_PLAY = 3;
final int STATE_HIGHSCORE = 4;