Skip to content

Commit

Permalink
Update phabox2.py
Browse files Browse the repository at this point in the history
  • Loading branch information
KennthShang authored Nov 27, 2024
1 parent 3c85021 commit a526b40
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/phabox2/phabox2.py
Original file line number Diff line number Diff line change
Expand Up @@ -349,8 +349,8 @@ def main():
parser.add_argument('--tcov', help='Alignment coverage for ANI-based clustering: 0-100 || (default 85)', type=float, default = 85)
parser.add_argument('--draw', help='Draw network examples for the query virus relationship: Y or N || (default N)', default = 'N')
parser.add_argument('--marker', nargs='+', type=str, help='A list of marker used to generate tree', default=['terl', 'portal'])
parser.add_argument('--mpident', help='Alignment identity for matching marker genes || default: 25 || range from 0 to 100', type=float, default = 75)
parser.add_argument('--mcov', help='Alignment coverage for matching marker genes || default: 70 || range from 0 to 100', type=float, default = 25)
parser.add_argument('--mpident', help='Alignment identity for matching marker genes || default: 25 || range from 0 to 100', type=float, default = 25)
parser.add_argument('--mcov', help='Alignment coverage for matching marker genes || default: 50 || range from 0 to 100', type=float, default = 50)
parser.add_argument('--msa', type=str, help='Whether run msa: Y or N ||default N', default='N')
parser.add_argument('--tree', type=str, help='Whether build a tree: Y or N ||default N', default='N')
inputs = parser.parse_args()
Expand Down

0 comments on commit a526b40

Please sign in to comment.