4 Copyright (C) 2007 Apple Inc. All rights reserved.
6 Redistribution and use in source and binary forms, with or without
7 modification, are permitted provided that the following conditions
9 1. Redistributions of source code must retain the above copyright
10 notice, this list of conditions and the following disclaimer.
11 2. Redistributions in binary form must reproduce the above copyright
12 notice, this list of conditions and the following disclaimer in the
13 documentation and/or other materials provided with the distribution.
15 THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
16 EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
18 PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR
19 CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
20 EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
21 PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
22 PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
23 OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
25 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 <title>SunSpider string-fasta
</title>
29 <link rel=
"stylesheet" href=
"sunspider.css"></link>
39 // The Great Computer Language Shootout
40 // http://shootout.alioth.debian.org
42 // Contributed by Ian Osgood
44 var last
= 42, A
= 3877, C
= 29573, M
= 139968;
47 last
= (last
* A
+ C
) % M
;
48 return max
* last
/ M
;
52 "GGCCGGGCGCGGTGGCTCACGCCTGTAATCCCAGCACTTTGG" +
53 "GAGGCCGAGGCGGGCGGATCACCTGAGGTCAGGAGTTCGAGA" +
54 "CCAGCCTGGCCAACATGGTGAAACCCCGTCTCTACTAAAAAT" +
55 "ACAAAAATTAGCCGGGCGTGGTGGCGCGCGCCTGTAATCCCA" +
56 "GCTACTCGGGAGGCTGAGGCAGGAGAATCGCTTGAACCCGGG" +
57 "AGGCGGAGGTTGCAGTGAGCCGAGATCGCGCCACTGCACTCC" +
58 "AGCCTGGGCGACAGAGCGAGACTCCGTCTCAAAAA";
61 a
:0.27, c
:0.12, g
:0.12, t
:0.27,
62 B
:0.02, D
:0.02, H
:0.02, K
:0.02,
63 M
:0.02, N
:0.02, R
:0.02, S
:0.02,
64 V
:0.02, W
:0.02, Y
:0.02
74 function makeCumulative(table
) {
76 for (var c
in table
) {
77 if (last
) table
[c
] += table
[last
];
82 function fastaRepeat(n
, seq
) {
83 var seqi
= 0, lenOut
= 60;
85 if (n
<lenOut
) lenOut
= n
;
86 if (seqi
+ lenOut
< seq
.length
) {
87 ret
= seq
.substring(seqi
, seqi
+lenOut
);
90 var s
= seq
.substring(seqi
);
91 seqi
= lenOut
- s
.length
;
92 ret
= s
+ seq
.substring(0, seqi
);
98 function fastaRandom(n
, table
) {
99 var line
= new Array(60);
100 makeCumulative(table
);
102 if (n
<line
.length
) line
= new Array(n
);
103 for (var i
=0; i
<line
.length
; i
++) {
105 for (var c
in table
) {
120 ret
= fastaRepeat(2*count
*100000, ALU
);
121 ret
= fastaRandom(3*count
*1000, IUB
);
122 ret
= fastaRandom(5*count
*1000, HomoSap
);