Skip to content
Snippets Groups Projects
Commit 1903b654 authored by Floreal Cabanettes's avatar Floreal Cabanettes
Browse files

Fix build results argparse

parent 3a817c8b
No related branches found
No related tags found
No related merge requests found
......@@ -57,8 +57,8 @@ description: Build results of the simulated data detection")
help='File listing VCF files containing the filtered results')
parser.add_argument('-y', '--type', required=True, type=str, choices=vcf.ALLOW_VARIANTS, help="Type of variant")
parser.add_argument('--overlap_cutoff', type=float, default=0.5, help='cutoff for reciprocal overlap')
parser.add_argument('--left_precision', type=int, default=-1, help='left breakpoint precision')
parser.add_argument('--right_precision', type=int, default=-1, help='right breakpoint precision')
parser.add_argument('--left-precision', type=int, default=-1, help='left breakpoint precision')
parser.add_argument('--right-precision', type=int, default=-1, help='right breakpoint precision')
parser.add_argument('-o', '--output', type=str, default="results", help='output folder')
parser.add_argument('--no-xls', action='store_const', const=True, default=False, help='Do not build Excel file')
parser.add_argument('--haploid', action='store_const', const=True, default=False, help='The organism is haploid')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment