c27b5180f5e63f012d1b6a6ca18126f3130172df
[jabaws.git] / runner / compbio / runner / _impl / Environment.java
1 /* Copyright (c) 2011 Peter Troshin\r
2  *  \r
3  *  JAva Bioinformatics Analysis Web Services (JABAWS) @version: 2.0     \r
4  * \r
5  *  This library is free software; you can redistribute it and/or modify it under the terms of the\r
6  *  Apache License version 2 as published by the Apache Software Foundation\r
7  * \r
8  *  This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without\r
9  *  even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the Apache \r
10  *  License for more details.\r
11  * \r
12  *  A copy of the license is in apache_license.txt. It is also available here:\r
13  * @see: http://www.apache.org/licenses/LICENSE-2.0.txt\r
14  * \r
15  * Any republication or derived work distributed in source code form\r
16  * must include this copyright and license notice.\r
17  */\r
18 package compbio.runner._impl;\r
19 \r
20 /**\r
21  * This is utility class to encapsulate environmental variables like directory paths \r
22  * @author pvtroshin\r
23   */\r
24 public final class Environment {\r
25 \r
26         private Environment() { } // prevent instantiation\r
27         \r
28         public static String getBlastBinDir() { \r
29                 return  "/fc_gpfs/gjb_lab/www-refine/bin/blast_32bit/blast-2.2.17/bin/";\r
30         }\r
31         \r
32         public static final String getBlastDatabasesDir() { \r
33                 return "/db/blastdb/"; \r
34         }\r
35         public static final String getRPSBlastDatabasesDir() { \r
36                 return "/db/CDD/"; \r
37         }\r
38 }\r