|
17 | 17 | @click.option('--reads', 'reads_fname', type=click.Path(exists=True), help='File with ONT/PacBio reads') |
18 | 18 | @click.option('-o', 'out_dir', type=click.Path(), required=True, help='Output folder') |
19 | 19 | @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') |
24 | 26 | @click.option('-f', '--no-reuse', 'no_reuse', is_flag=True, help='Do not reuse old files') |
25 | 27 | @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. ') |
26 | 28 | @click.option('-l', 'labels', help='Comma separated list of assembly labels') |
|
0 commit comments