From 63eb2640df9e79c0b503484705d06558abdd1d14 Mon Sep 17 00:00:00 2001 From: pdimens Date: Fri, 19 Apr 2024 11:09:53 -0400 Subject: [PATCH] rm comments --- src/harpy/align.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/harpy/align.py b/src/harpy/align.py index 80d8d5a68..b1313caa6 100644 --- a/src/harpy/align.py +++ b/src/harpy/align.py @@ -76,8 +76,6 @@ def bwa(input, output_dir, genome, threads, extra_params, quality_filter, molecu ) return command -#####----------ema-------------------- - @click.command(no_args_is_help = True, epilog = "read the docs for more information: https://pdimens.github.io/harpy/modules/align/ema") @click.option('-p', '--platform', type = click.Choice(['haplotag', '10x'], case_sensitive=False), default = "haplotag", show_default=True, help = "Linked read bead technology\n[haplotag, 10x]") @click.option('-w', '--whitelist', type = click.Path(exists=True, dir_okay=False), help = "Barcode whitelist file for tellseq/10x") @@ -164,8 +162,6 @@ def ema(input, output_dir, platform, whitelist, genome, threads, ema_bins, skipr ) return command -#####----------minimap2-------------------- - @click.command(no_args_is_help = True, epilog= "read the docs for more information: https://pdimens.github.io/harpy/modules/align/bwa/") @click.option('-g', '--genome', type=click.Path(exists=True, dir_okay=False), required = True, metavar = "File Path", help = 'Genome assembly for read mapping') @click.option('-m', '--molecule-distance', default = 100000, show_default = True, type = int, metavar = "Integer", help = 'Base-pair distance threshold to separate molecules')