Skip to content

Commit

Permalink
Drop unused short name attr
Browse files Browse the repository at this point in the history
  • Loading branch information
bede committed Dec 14, 2024
1 parent 8e16a5b commit 4e720a1
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/hostile/aligner.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
@dataclass
class Aligner:
name: str
short_name: str
bin_path: Path
data_dir: Path
cmd: str
Expand Down Expand Up @@ -238,7 +237,6 @@ def gen_paired_clean_cmd(
{
"bowtie2": Aligner(
name="Bowtie2",
short_name="bt2",
bin_path=Path("bowtie2"),
data_dir=util.CACHE_DIR,
cmd=(
Expand All @@ -252,7 +250,6 @@ def gen_paired_clean_cmd(
),
"minimap2": Aligner(
name="Minimap2",
short_name="mm2",
bin_path=Path("minimap2"),
data_dir=util.CACHE_DIR,
cmd="'{BIN_PATH}' -ax map-ont --secondary no -t {THREADS} {ALIGNER_ARGS} '{INDEX_PATH}' '{FASTQ}'",
Expand Down

0 comments on commit 4e720a1

Please sign in to comment.