Skip to content

Commit 5911360

Browse files
committed
Bug fixes
git-svn-id: http://code.open-bio.org/repos/biojava/biojava-live/trunk@8792 7c6358e6-4a41-0410-a743-a5b2a554c398
1 parent 6205c98 commit 5911360

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

biojava3-ws/src/main/java/org/biojava3/ws/alignment/qblast/NCBIQBlastAlignmentProperties.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public class NCBIQBlastAlignmentProperties implements
4747
private HashMap<String, String> param = new HashMap<String, String>();
4848

4949

50-
public void NCBIQBlastAlignmentProperties() {
50+
public NCBIQBlastAlignmentProperties() {
5151
this.param.put("PROGRAM","not_set");
5252
this.param.put("DATABASE","not_set");
5353
this.param.put("OTHER_ADVANCED","not_set");

biojava3-ws/src/main/java/org/biojava3/ws/alignment/qblast/NCBIQBlastService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ private String sendActualAlignementRequest(String str,
153153
* checking in RemoteQBlastAlignmentProperties
154154
*
155155
* */
156-
if (rpa.getAlignmentOption("OTHER_ADVANCED") != "not_set") {
156+
if (rpa.getAlignmentOption("OTHER_ADVANCED")!="not_set") {
157157
cmd += cmd + "&" + rpa.getAlignmentOption("OTHER_ADVANCED");
158158
}
159159

0 commit comments

Comments
 (0)