rio - gsdir work...
[jalview.git] / forester / java / src / org / forester / msa / MsaInferrer.java
index 8266648..8c839f9 100644 (file)
@@ -29,6 +29,7 @@ import java.io.File;
 import java.io.IOException;
 import java.util.List;
 
+import org.forester.sequence.Sequence;
 import org.forester.util.SystemCommandExecutor;
 
 public abstract class MsaInferrer {
@@ -47,4 +48,7 @@ public abstract class MsaInferrer {
     }
 
     public abstract Msa infer( File path_to_input_seqs, List<String> opts ) throws IOException, InterruptedException;
+
+    public abstract Msa infer( final List<Sequence> seqs, final List<String> opts ) throws IOException,
+            InterruptedException;
 }