Posts
Showing posts from 2010
GuruPlug
- Get link
- X
- Other Apps
After a short wait, I received the GuruPlug, this little computer will host the GLiB website (currently down ...). This is the pretty and elegant package: and the unpacking: It include only the GuruPlug, one eth cable and two electric adapters. The specifications and diagram are: Of course this machine runs Linux (Debian Lenny) and it includes some basic services: Wifi server, CUPS, LAMP (lighttp + MySQL + PHP), ssh, samba. This is the GuruPlug in action: Some action in the terminal: $ ssh root@192.168.1.1 Warning: Permanently added '192.168.1.1' (RSA) to the list of known hosts. root@192.168.1.1's password: Linux sheevaplug-debian 2.6.32-00007-g56678ec #1 PREEMPT Thu Dec 24 03:15:48 PST 2009 armv5tel The programs included with the Debian GNU/Linux system are free software; the exact distribution terms for each program are described in the individual files in /usr/share/doc/*/copyright. Debian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent permitted by applicabl...
Egomaniacos mensajes
- Get link
- X
- Other Apps
Ayer deje abierta mi sesión en un cluster remoto, después de un rato de inactividad esta termino la sesión, pero antes de cerrarse me toco ver estos mensajes, supongo que por el sistema de mensajes del MPI y no tengo idea de quien los mando: Broadcast message from clase_distribuidos_itesm4 (pts/8) (Mon Feb 22 19:58:07Dominaremos el mundo con pthreads Broadcast message from clase_distribuidos_itesm13 (pts/14) (Mon Feb 22 19:58:callate Broadcast message from clase_distribuidos_itesm4 (pts/8) (Mon Feb 22 19:58:37Callame Broadcast message from clase_distribuidos_itesm18 (pts/18) Mon Feb 22 19:58:bye }^_ Broadcast message from clase_distribuidos_itesm17 (pts/19) Mon Feb 22 20:25:largate a Canad? Me gusto el largate a Canadá, sobre todo con los olímpicos que hay ahora. Eso me recuerda que varios programadores en su etapa de aprendizaje son bastante ocurrentes (y mal hablados) en sus primeros pininos de código.
Maping TFBS in a sequence
- Get link
- X
- Other Apps
I needed to test some sequence for known TFBS, I was looking for: (1) a public database of TFBS and (2) a program to search the motifs in a sequence(s). First I found Jaspar as an alternative to the commercial TransFac DB , I downloaded the matrices for vertebrate. The second problem was to find a program to search the motifs in any sequence, I did not find any updated program (many are published, but few websites are active nowadays). So, I decided to write my own program, I share the code if anyone can use it: #!/usr/bin/perl -w use strict; use Getopt::Long; =head1 NAME jasparScan.pl =head1 USAGE jasparScan.pl -f FASTA -m MATRIX [-s MODELS] [-c CUT_OFF] OPTIONS: -h --help Help screen -f --fasta Fasta file to scan -m --matrix Jaspar motif matrix -s --models List of models, separated by ':' [Def: all] -c --cutoff Similarity cut-off [Def: 0.90] =head1 DESCRIPTION Script to map a TF binding site matrix (from Jaspar DB) into a fasta sequence. The simila...