Skip to content

Commit c93d2eb

Browse files
committed
forgot to change datatype in py wrapper - fixed
1 parent 4b41278 commit c93d2eb

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

veritymap/main.py

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,12 @@
1717
@click.option('--reads', 'reads_fname', type=click.Path(exists=True), help='File with ONT/PacBio reads')
1818
@click.option('-o', 'out_dir', type=click.Path(), required=True, help='Output folder')
1919
@click.option('-t', 'threads', type=click.INT, help='Threads', default=4)
20-
@click.option('-d', 'datatype', type=click.Choice(['hifi', 'ont']), help='Sequencing platform, supported types are: '
21-
'"hifi" for PacBio HiFi reads and "ont" for ONT reads.'
22-
'Please note that "ont" mode is experimental and '
23-
'should be used with extra care')
20+
@click.option('-d', 'datatype',
21+
type=click.Choice(['hifi-haploid', 'hifi-haploid-complete', 'hifi-diploid', 'ont-haploid-complete']),
22+
help='Sequencing platform, supported types are: '
23+
'"hifi" for PacBio HiFi reads and "ont" for ONT reads.'
24+
'Please note that "ont" mode is experimental and '
25+
'should be used with extra care')
2426
@click.option('-f', '--no-reuse', 'no_reuse', is_flag=True, help='Do not reuse old files')
2527
@click.option('--careful', 'is_careful', is_flag=True, help='Run mapper in a careful mode to better detect inconsistencies. Can be time- and memory-consuming. Not recommended to run on the whole genome. ')
2628
@click.option('-l', 'labels', help='Comma separated list of assembly labels')

0 commit comments

Comments
 (0)