Skip to content

Commit fb4b07d

Browse files
committed
Minor cleanup
1 parent 21407db commit fb4b07d

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

neat/models/models.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ class DeletionModel(VariantModel):
8787
we'll need the rng to perform certain methods.
8888
"""
8989
_type = Deletion
90-
_description = "A deletion of N bases"
90+
_description = "A deletion of a random number of bases"
9191

9292
def __init__(self,
9393
deletion_len_model: dict[int: float, ...],

neat/variants/contig_variants.py

-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ class ContigVariants:
2828
2929
Using init here resets all parameters for each contig, even though there is no input.
3030
"""
31-
3231
def __init__(self):
3332
self.variant_locations: list[int] = []
3433
self.contig_variants: dict[int: list[VariantTypes]] = {}

0 commit comments

Comments
 (0)