We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 21407db commit fb4b07dCopy full SHA for fb4b07d
neat/models/models.py
@@ -87,7 +87,7 @@ class DeletionModel(VariantModel):
87
we'll need the rng to perform certain methods.
88
"""
89
_type = Deletion
90
- _description = "A deletion of N bases"
+ _description = "A deletion of a random number of bases"
91
92
def __init__(self,
93
deletion_len_model: dict[int: float, ...],
neat/variants/contig_variants.py
@@ -28,7 +28,6 @@ class ContigVariants:
28
29
Using init here resets all parameters for each contig, even though there is no input.
30
31
-
32
def __init__(self):
33
self.variant_locations: list[int] = []
34
self.contig_variants: dict[int: list[VariantTypes]] = {}
0 commit comments