repo.or.cz
/
cxgn-corelibs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge pull request #42 from solgenomics/topic/duplicate_image_warning
[cxgn-corelibs.git]
/
lib
/
CXGN
/
PotatoGenome
/
Config.pm
blob
909f2f5d1019a26432a42adec9813d42c3a8838d
1
package
CXGN
::
PotatoGenome
::
Config
;
2
use
base
'CXGN::Config'
;
3
my
$defaults
=
4
{
5
6
repository_path
=>
'/data/prod/public/potato_genome/bacs'
,
7
bac_publish_subdir
=>
'potato_genome/bacs'
,
8
9
# and so on
10
};
11
sub
defaults
{
shift
->
SUPER
::
defaults
(
$defaults
,
@_
)}
12
1
;