Fix core WST file
[jabaws.git] / testsrc / compbio / metadata / AllTestSuit.java
1 /* Copyright (c) 2009 Peter Troshin\r
2  *  \r
3  *  JAva Bioinformatics Analysis Web Services (JABAWS) @version: 1.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 \r
19 package compbio.metadata;\r
20 \r
21 import java.io.File;\r
22 \r
23 import compbio.runner.Util;\r
24 import compbio.runner.msa.ClustalW;\r
25 import compbio.runner.msa.Muscle;\r
26 import compbio.runner.msa.Tcoffee;\r
27 import compbio.util.SysPrefs;\r
28 \r
29 public class AllTestSuit {\r
30 \r
31         public static final PresetManager<ClustalW> CLUSTAL_PRESETS = Util\r
32                         .getPresets(ClustalW.class);\r
33         public static final RunnerConfig<ClustalW> CLUSTAL_PARAMETERS = Util\r
34                         .getSupportedOptions(ClustalW.class);\r
35         public static final LimitsManager<ClustalW> CLUSTAL_LIMITS = compbio.engine.client.Util\r
36                         .getLimits(new ClustalW().getType());\r
37 \r
38         public static final PresetManager<Tcoffee> TCOFFEE_PRESETS = Util\r
39                         .getPresets(Tcoffee.class);\r
40         public static final RunnerConfig<Tcoffee> TCOFFEE_PARAMETERS = Util\r
41                         .getSupportedOptions(Tcoffee.class);\r
42         public static final LimitsManager<Tcoffee> TCOFFEE_LIMITS = compbio.engine.client.Util\r
43                         .getLimits(new Tcoffee().getType());\r
44 \r
45         public static final PresetManager<Muscle> MUSCLE_PRESETS = Util\r
46                         .getPresets(Muscle.class);\r
47         public static final RunnerConfig<Muscle> MUSCLE_PARAMETERS = Util\r
48                         .getSupportedOptions(Muscle.class);\r
49         public static final LimitsManager<Muscle> MUSCLE_LIMITS = compbio.engine.client.Util\r
50                         .getLimits(new Muscle().getType());\r
51 \r
52         public final static String test_group_cluster = "cluster";\r
53         public final static String test_group_runner = "runner";\r
54         public final static String test_group_non_windows = "non_windows";\r
55         public final static String test_group_windows_only = "windows_only";\r
56         public final static String test_group_engine = "engine";\r
57         public final static String test_group_long = "performance";\r
58         public final static String test_group_webservices = "webservices";\r
59 \r
60         /*\r
61          * For this to work execution must start from the project directory!\r
62          */\r
63         public static final String CURRENT_DIRECTORY = SysPrefs\r
64                         .getCurrentDirectory() + File.separator;\r
65 \r
66         public static final String TEST_DATA_PATH = "testsrc" + File.separator\r
67                         + "testdata" + File.separator;\r
68 \r
69         public static final String TEST_DATA_PATH_ABSOLUTE = AllTestSuit.CURRENT_DIRECTORY\r
70                         + TEST_DATA_PATH;\r
71 \r
72         // For cluster execution paths MUST BE ABSOLUTE as cluster hosts will not be\r
73         // able to access the task otherwise\r
74         public static final String OUTPUT_DIR_ABSOLUTE = AllTestSuit.CURRENT_DIRECTORY\r
75                         + File.separator + "local_jobsout" + File.separator;\r
76 \r
77         public static final String RUNNER_TEST_LOGGER = "RunnerLogger";\r
78 \r
79         public static final String test_input = AllTestSuit.TEST_DATA_PATH_ABSOLUTE\r
80                         + "TO1381.fasta";\r
81 \r
82         public static final String test_alignment_input = AllTestSuit.TEST_DATA_PATH_ABSOLUTE\r
83                         + "TO1381.fasta.aln";\r
84 \r
85         public static final String test_input_real = AllTestSuit.TEST_DATA_PATH_ABSOLUTE\r
86                         + "50x500Protein.fasta";\r
87 \r
88         public static final String test_input_dna = AllTestSuit.TEST_DATA_PATH_ABSOLUTE\r
89                         + "3dnaseqs.fasta";\r
90 \r
91         public static final String test_input_large = AllTestSuit.TEST_DATA_PATH_ABSOLUTE\r
92                         + "1000x3000Dna.fasta";\r
93 \r
94 }\r