Skip to content

Commit

Permalink
fix command line conflicting argument
Browse files Browse the repository at this point in the history
  • Loading branch information
priesgo committed Jun 10, 2022
1 parent 82d38ff commit 61645db
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion vafator/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION='1.3.0'
VERSION='1.3.1'
2 changes: 1 addition & 1 deletion vafator/command_line.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ def vafator2decifer():
help="BED file of genomic regions to exclude")
parser.add_argument("-p", "--min_purity", required=False, default=0.0, type=float,
help="minimum purity to consider samples")
parser.add_argument("-S", "--snp_file", required=False, default=None, type=str,
parser.add_argument("--snp_file", required=False, default=None, type=str,
help="HATCHet file containing germline SNP counts in tumor samples, baf/tumor.1bed")
args = parser.parse_args()
run_vafator2decifer(args)

0 comments on commit 61645db

Please sign in to comment.