repo.or.cz
/
GalaxyCodeBases.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
modified: Makefile
[GalaxyCodeBases.git]
/
perl
/
etc
/
justonce
/
tmp
/
simssPCR.pl
blob
5cc5584ba86fd1f722d0b2c22be1358192b3a64d
1
#!/bin/env perl
2
use
strict
;
3
use
warnings
;
4
use
Data
::
Dump
qw(ddx)
;
5
6
my
$cycle
=
5
;
7
my
(
%PCR
,
@Solution
);
8
push
@Solution
,
0
;
9
10
for
my
$i
(
1
..
$cycle
) {
11
my
@t
=
@Solution
;
12
push
@Solution
,(
1
+
$_
)
for
@t
;
13
}
14
15
++
$PCR
{
$_
}
for
@Solution
;
16
ddx \
%PCR
;