forked from TheSEED/app_service
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AppConfig.pm.tt
29 lines (25 loc) · 1.45 KB
/
AppConfig.pm.tt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package Bio::KBase::AppService::AppConfig;
use constant data_api_url => '[% data_api_url %]';
use constant db_host => '[% db_host %]';
use constant db_user => '[% db_user %]';
use constant db_pass => '[% db_pass %]';
use constant db_name => '[% db_name %]';
use constant seedtk => '[% seedtk %]';
use constant github_issue_repo_owner => '[% github_issue_repo_owner %]';
use constant github_issue_repo_name => '[% github_issue_repo_name %]';
use constant github_issue_token => '[% github_issue_token %]';
use constant reference_data_dir => '[% reference_data_dir %]';
use constant binning_genome_annotation_clientgroup => '[% binning_genome_annotation_clientgroup %]';
use constant mash_reference_sketch => '[% mash_reference_sketch %]';
use constant binning_spades_threads => '[% binning_spades_threads %]';
use constant binning_spades_ram => '[% binning_spades_ram %]';
use constant bebop_binning_user => '[% bebop_binning_user %]';
use constant bebop_binning_key => '[% bebop_binning_key %]';
use base 'Exporter';
our @EXPORT_OK = qw(data_api_url github_issue_repo_owner github_issue_repo_name github_issue_token
db_host db_user db_pass db_name seedtk reference_data_dir
bebop_binning_user bebop_binning_key
binning_spades_threads binning_spades_ram
binning_genome_annotation_clientgroup mash_reference_sketch);
our %EXPORT_TAGS = (all => [@EXPORT_OK]);
1;