repo.or.cz
/
sgn.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
search stocks by location
[sgn.git]
/
cgi-bin
/
phenome
/
population_indls.pl
blob
0cf47619cabf61932a3f64ea2669780e077bfdd2
1
#!/usr/bin/perl -w
2
3
=head1 DESCRIPTION
4
redirects to qtl_analysis.pl
5
6
=cut
7
8
use
strict
;
9
use
warnings
;
10
11
12
use
CGI
;
13
14
my
$cgi
=
CGI
->
new
();
15
my
$pop_id
=
$cgi
->
param
(
'population_id'
);
16
my
$term_id
=
$cgi
->
param
(
'cvterm_id'
);
17
18
print
$cgi
->
redirect
(
"qtl_analysis.pl?population_id=
$pop_id
&cvterm_id=
$term_id
"
,
301
);