Skip to content

Commit

Permalink
adjust mmseqs parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
endixk committed Aug 10, 2023
1 parent a48a38a commit 3a1fabf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/process/MMseqsEasySearchProcess.java
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ public static MMseqsSearchResultEntity search(String queryPath, String targetPat

MMseqsWrapper mm = new MMseqsWrapper();
mm.setEasySearch(queryPath, targetPath, resultPath, tmpPath);
mm.setSearchType(3);
mm.setSearchType(0);
mm.setThreads(threads);
mm.exec();

Expand All @@ -95,7 +95,7 @@ public static MMseqsSearchResultEntity search(String queryPath, String targetPat

MMseqsWrapper mm = new MMseqsWrapper();
mm.setEasySearch(queryPath, targetPath, resultPath, tmpPath);
mm.setSearchType(3);
mm.setSearchType(0);
mm.setEvalue(evalue);
mm.setCoverage(cov);
mm.setThreads(threads);
Expand Down
2 changes: 1 addition & 1 deletion src/wrapper/MMseqsWrapper.java
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public void setThreads(int threads) {
}

public void setCoverage(double cov) {
super.addArg("--cov-mode", "1");
super.addArg("--cov-mode", "0");
super.addArg("-c", String.valueOf(cov));
}

Expand Down

0 comments on commit 3a1fabf

Please sign in to comment.