Skip to content

Commit

Permalink
Invoked the new KAlign WS at EBI. Solves #3231
Browse files Browse the repository at this point in the history
* New WS stub generated
* Invocation now in Job
  • Loading branch information
olas committed Sep 11, 2012
1 parent d36ec3e commit 9aab7f2
Show file tree
Hide file tree
Showing 20 changed files with 2,377 additions and 1,313 deletions.
Expand Up @@ -12,6 +12,8 @@

import java.util.List;

import org.eclipse.core.runtime.IProgressMonitor;

import net.bioclipse.core.PublishedClass;
import net.bioclipse.core.PublishedMethod;
import net.bioclipse.core.Recorded;
Expand Down Expand Up @@ -43,6 +45,7 @@ public interface IKalignManager extends IBioclipseManager {
methodSummary="Align a list of DNA sequences using the " +
"KAlign Web service at EBI.")
public List<IDNA> alignDNA(List<IDNA> dnaList) throws BioclipseException;
public List<IDNA> alignDNA(List<IDNA> dnaList, IProgressMonitor monitor) throws BioclipseException;


/**
Expand All @@ -60,6 +63,7 @@ public interface IKalignManager extends IBioclipseManager {
methodSummary="Align a list of protein sequences using " +
"the KAlign Web service at EBI.")
public List<IProtein> alignProteins(List<IProtein> proteinList) throws BioclipseException;
public List<IProtein> alignProteins(List<IProtein> proteinList, IProgressMonitor monitor) throws BioclipseException;


}

0 comments on commit 9aab7f2

Please sign in to comment.