in progress
[jalview.git] / forester / java / src / org / forester / surfacing / DomainLengths.java
index 9e39b9e..1018aea 100644 (file)
@@ -6,7 +6,7 @@
 // Copyright (C) 2008-2010 Christian M. Zmasek
 // Copyright (C) 2008-2010 Burnham Institute for Medical Research
 // All rights reserved
-// 
+//
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Lesser General Public
 // License as published by the Free Software Foundation; either
 // but WITHOUT ANY WARRANTY; without even the implied warranty of
 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 // Lesser General Public License for more details.
-// 
+//
 // You should have received a copy of the GNU Lesser General Public
 // License along with this library; if not, write to the Free Software
 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
 //
 // Contact: phylosoft @ gmail . com
-// WWW: www.phylosoft.org/forester
+// WWW: https://sites.google.com/site/cmzmasek/home/software/forester
 
 package org.forester.surfacing;
 
@@ -31,15 +31,16 @@ import java.util.List;
 import java.util.SortedMap;
 import java.util.TreeMap;
 
+import org.forester.species.Species;
 import org.forester.util.BasicDescriptiveStatistics;
 import org.forester.util.DescriptiveStatistics;
 
 public class DomainLengths {
 
-    final DomainId                                  _domain_id;
+    final String                                    _domain_id;
     final SortedMap<Species, DescriptiveStatistics> _length_statistics;
 
-    public DomainLengths( final DomainId domain_id ) {
+    public DomainLengths( final String domain_id ) {
         _domain_id = domain_id;
         _length_statistics = new TreeMap<Species, DescriptiveStatistics>();
     }
@@ -89,7 +90,7 @@ public class DomainLengths {
         return ( species_mean - population_mean ) / population_sd;
     }
 
-    public DomainId getDomainId() {
+    public String getDomainId() {
         return _domain_id;
     }