Skip to content

Commit

Permalink
Set strandbias in testcases
Browse files Browse the repository at this point in the history
  • Loading branch information
seppinho committed Feb 28, 2024
1 parent 733173b commit c451602
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/test/java/genepi/mut/steps/MutserveTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ public void test1000GIndel() throws IOException {
task.setInput(input);
task.setReference(ref);
task.setLevel(0.01);
task.setStrandBias(1.2);
task.setVarName(out);
task.setRawName(raw);
task.setDeletions(true);
Expand Down Expand Up @@ -144,6 +145,7 @@ public void test1000G() 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 @@ -199,6 +201,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 @@ -268,6 +271,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 Down Expand Up @@ -338,6 +342,7 @@ public void testmtDNAMixtures() throws IOException {
task.setVarName(out);
task.setRawName(outRaw);
task.setLevel(0.01);
task.setStrandBias(1.2);
TaskService.setAnsiSupport(false);
tasks.add(task);
TaskService.monitor(null).run(tasks);
Expand Down Expand Up @@ -384,6 +389,7 @@ public void testSampleWithSnpsAtEnd() throws IOException {
task.setReference(ref);
task.setVarName(out);
task.setRawName(outRaw);
task.setStrandBias(1.2);
task.setLevel(0.004);
task.setBaq(false);
TaskService.setAnsiSupport(false);
Expand Down

0 comments on commit c451602

Please sign in to comment.