Skip to content
This repository has been archived by the owner on Jan 24, 2024. It is now read-only.

Commit

Permalink
Refactoring code to varfish-annotator-core (#68)
Browse files Browse the repository at this point in the history
This is done in preparation for adding explicit variant caller support.

Closes: #68
Related-Issue: #68
Projected-Results-Impact: none
  • Loading branch information
holtgrewe committed Sep 13, 2022
1 parent 36fdcc1 commit c167f3c
Show file tree
Hide file tree
Showing 29 changed files with 1,314 additions and 990 deletions.
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

## v0.26-SNAPSHOT

- Explicitely model support for SV callers (#68)
- Removing explicit support for SV2 (#67)
- Adding end-to-end tests `hg19-chr22` (#61)

Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -104,9 +104,11 @@ public final class AnnotateSvsArgs {
@Parameter(names = "--write-bnd-mate", description = "Write out BND mates (true, false, or auto)")
private String writeBndMates = "auto";

public boolean isHelp() {
return help;
}
@Parameter(
names = "skip-filters",
description =
"Skip records with this filter value (comma-separated list), default is 'LowQual'")
private String skipFilters = "LowQual";

public String getRefseqSerPath() {
return refseqSerPath;
Expand Down Expand Up @@ -180,6 +182,10 @@ public String getWriteBndMates() {
return writeBndMates;
}

public String getSkipFilters() {
return skipFilters;
}

@Override
public String toString() {
return "AnnotateSvsArgs{"
Expand Down Expand Up @@ -237,6 +243,9 @@ public String toString() {
+ ", writeBndMates=\'"
+ writeBndMates
+ "\'"
+ ", skipFilters=\'"
+ skipFilters
+ "\'"
+ '}';
}
}
Loading

0 comments on commit c167f3c

Please sign in to comment.