-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathAppConfig.pm.tt
59 lines (49 loc) · 2.6 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
package Bio::KBase::AppService::AppConfig;
use constant data_api_url => '[% data_api_url %]';
use constant binning_data_api_url => '[% binning_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 kma_db => '[% kma_db %]';
use constant metagenome_dbs => '[% metagenome_dbs %]';
use constant sched_db_host => '[% sched_db_host %]';
use constant sched_db_port => '[% sched_db_port %]';
use constant sched_db_user => '[% sched_db_user %]';
use constant sched_db_pass => '[% sched_db_pass %]';
use constant sched_db_name => '[% sched_db_name %]';
use constant sched_default_cluster => '[% sched_default_cluster %]';
use constant redis_host => '[% redis_host %]';
use constant redis_port => '[% redis_port %]';
use constant redis_db => '[% redis_db %]';
use constant slurm_control_task_partition => '[% slurm_control_task_partition %]';
use constant bebop_binning_user => '[% bebop_binning_user %]';
use constant bebop_binning_key => '[% bebop_binning_key %]';
use constant app_directory => '[% app_directory %]';
use constant app_service_url => '[% app_service_url %]';
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
sched_db_host sched_db_port sched_db_user sched_db_pass sched_db_name
sched_default_cluster
slurm_control_task_partition
binning_spades_threads binning_spades_ram
binning_genome_annotation_clientgroup mash_reference_sketch
app_directory app_service_url
redis_host redis_port redis_db
kma_db metagenome_dbs
binning_data_api_url
);
our %EXPORT_TAGS = (all => [@EXPORT_OK]);
1;