X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=forester%2Fjava%2Fsrc%2Forg%2Fforester%2Fmsa%2FMsaInferrer.java;h=45fec857ee9bcde6558d702a8a39d78dbfa1db46;hb=5642da5f473ab9ae57fee86c0cb3b33525a2e916;hp=8c839f98730e33ff3e4a41f91aa2a815abb8d42d;hpb=b1a74bd076c917d428002284a53a2c6f390226fb;p=jalview.git diff --git a/forester/java/src/org/forester/msa/MsaInferrer.java b/forester/java/src/org/forester/msa/MsaInferrer.java index 8c839f9..45fec85 100644 --- a/forester/java/src/org/forester/msa/MsaInferrer.java +++ b/forester/java/src/org/forester/msa/MsaInferrer.java @@ -21,7 +21,7 @@ // 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.msa; @@ -29,7 +29,7 @@ import java.io.File; import java.io.IOException; import java.util.List; -import org.forester.sequence.Sequence; +import org.forester.sequence.MolecularSequence; import org.forester.util.SystemCommandExecutor; public abstract class MsaInferrer { @@ -49,6 +49,6 @@ public abstract class MsaInferrer { public abstract Msa infer( File path_to_input_seqs, List opts ) throws IOException, InterruptedException; - public abstract Msa infer( final List seqs, final List opts ) throws IOException, - InterruptedException; + public abstract Msa infer( final List seqs, final List opts ) throws IOException, + InterruptedException; }