Skip to content

Commit

Permalink
Merge pull request #26 from TRON-Bioinformatics/filter-purity-decifer
Browse files Browse the repository at this point in the history
fix command line conflicting argument
  • Loading branch information
priesgo authored Jun 10, 2022
2 parents 275b666 + 61645db commit 032b9da
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 032b9da

Please sign in to comment.