Skip to content

Commit

Permalink
Fix missing strand-bias option
Browse files Browse the repository at this point in the history
  • Loading branch information
seppinho committed Feb 28, 2024
1 parent c451602 commit ebde5e0
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/test/java/genepi/mut/steps/MutserveTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -214,6 +214,7 @@ public void test2Samples1000G() throws IOException {
task.setInput(input);
task.setReference(ref);
task.setLevel(0.01);
task.setStrandBias(1.2);
task.setVarName(out);
task.setRawName(raw);
TaskService.setAnsiSupport(false);
Expand Down Expand Up @@ -284,6 +285,7 @@ public void test3Samples1000G() throws IOException {
task.setInput(input);
task.setReference(ref);
task.setLevel(0.01);
task.setStrandBias(1.2);
task.setVarName(out);
task.setRawName(raw);
TaskService.setAnsiSupport(false);
Expand All @@ -296,6 +298,7 @@ public void test3Samples1000G() throws IOException {
task.setInput(input);
task.setReference(ref);
task.setLevel(0.01);
task.setStrandBias(1.2);
task.setVarName(out);
task.setRawName(raw);
TaskService.setAnsiSupport(false);
Expand All @@ -315,6 +318,7 @@ public void test3Samples1000G() throws IOException {
int count = 0;
while (reader.next()) {
String[] splits = reader.get().split("\t");
System.out.println(reader.get());
if(splits[1].equals("PASS")) {
count++;
}
Expand Down

0 comments on commit ebde5e0

Please sign in to comment.