8ea666b6137511e9ea8b6c7fdad4e18ca5a2ec83
[jalview.git] / src / jalview / ws / MsaWServices.java
1 package jalview.ws;
2 import java.util.Hashtable;
3 /**
4  * <p>Title: MsaWServices </p>
5  *
6  * <p>Description: Registry of MsaWSI style services </p>
7  *
8  * <p>Copyright: Copyright (c) 2004</p>
9  *
10  * <p>Company: Dundee University</p>
11  *
12  * @author not attributable
13  * @version 1.0
14  */
15 public class MsaWServices {
16   public static Hashtable info;
17   static
18   {
19     info = new Hashtable();
20     info.put("ClustalWS",
21              new String[]
22              {
23              "http://www.compbio.dundee.ac.uk/JalviewWS/services/ClustalWS",
24              "ClustalW Alignment job",
25              "\"Thompson, J.D., Higgins, D.G. and Gibson, T.J. (1994) CLUSTAL W: improving the sensitivity of progressive multiple" +
26              " sequence alignment through sequence weighting, position specific gap penalties and weight matrix choice."
27              + " Nucleic Acids Research, submitted, June 1994."
28     });
29     info.put("MuscleWS",
30              new String[]
31              {
32              "http://www.compbio.dundee.ac.uk/JalviewWS/services/MuscleWS",
33              "Muscle Alignment job",
34              "Edgar, Robert C. (2004), MUSCLE: multiple sequence alignment "
35              +
36              "with high accuracy and high throughput, Nucleic Acids Research 32(5), 1792-97."
37     });
38   };
39 }