Most perl hidden markov model module related news are at:
123bioinformatics.com
– 123bioinformatics.com
Dawn of $1000 Human genome ! 31 Jan 2012 | 10:47 am
Ion Torrent DNA sequencing platform and chips announced by Life Technologies promises to sequence human genome in matter of hours at the cost of $1000!! Incredibly exciting !! This $1000 includes the...
AWK one-liners for Bioinformatics 25 Jan 2012 | 01:14 am
Adding a column in a file: cat filename 4 4 3 1 8 To get the Sum do, awk ‘{ for (i = 1; i <= NF; i++) s = s+$i }; END { print s+0 }’ filename It prints the sum of all fields. You need not initiali...