factor/extra/benchmark/knucleotide/knucleotide.factor

64 lines
1.5 KiB
Factor
Raw Normal View History

USING: kernel io io.files splitting strings io.encodings.ascii
hashtables sequences assocs math namespaces prettyprint
math.parser combinators arrays sorting unicode.case ;
IN: benchmark.knucleotide
: float>string ( float places -- string )
swap >float number>string
"." split1 rot
over length over <
[ CHAR: 0 pad-right ]
2007-11-25 00:50:12 -05:00
[ head ] if "." swap 3append ;
: discard-lines ( -- )
readln
2007-11-25 00:50:12 -05:00
[ ">THREE" head? [ discard-lines ] unless ] when* ;
: read-input ( -- input )
discard-lines
">" read-until drop
2007-11-25 00:50:12 -05:00
CHAR: \n swap remove >upper ;
: tally ( x exemplar -- b )
clone tuck
[
[ [ 1+ ] [ 1 ] if* ] change-at
2007-11-25 00:50:12 -05:00
] curry each ;
: small-groups ( x n -- b )
swap
[ length swap - 1+ ] 2keep
2007-11-25 00:50:12 -05:00
[ >r over + r> subseq ] 2curry map ;
: handle-table ( inputs n -- )
small-groups
[ length ] keep
H{ } tally >alist
sort-values reverse
[
dup first write bl
second 100 * over / 3 float>string print
] each
2007-11-25 00:50:12 -05:00
drop ;
: handle-n ( inputs x -- )
tuck length
small-groups H{ } tally
at [ 0 ] unless*
2007-11-25 00:50:12 -05:00
number>string 8 CHAR: \s pad-right write ;
: process-input ( input -- )
dup 1 handle-table nl
dup 2 handle-table nl
{ "GGT" "GGTA" "GGTATT" "GGTATTTTAATT" "GGTATTTTAATTTATAGT" }
[ [ dupd handle-n ] keep print ] each
2007-11-25 00:50:12 -05:00
drop ;
: knucleotide ( -- )
"extra/benchmark/knucleotide/knucleotide-input.txt" resource-path
ascii [ read-input ] with-file-reader
2007-11-25 00:50:12 -05:00
process-input ;
MAIN: knucleotide