Skip to content

Commit

Permalink
Bad description of ploidy parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
aghozlane committed Aug 28, 2024
1 parent 0dc08e7 commit 802c8b0
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions meteor/meteor.py
Original file line number Diff line number Diff line change
Expand Up @@ -572,7 +572,7 @@ def get_arguments() -> Namespace: # pragma: no cover
dest="ploidy",
default=Strain.DEFAULT_PLOIDY,
type=int,
help="Ploidy (default: >= %(default).1f).",
help="Ploidy (default: %(default)d).",
)
strain_parser.add_argument(
"-m",
Expand Down Expand Up @@ -840,10 +840,14 @@ def main() -> None: # pragma: no cover
fastq_importer.execute()
meteor.fastq_dir = Path(tmpdirname) / "test"
meteor.ref_dir = meteor.ref_dir / "mock"
counter = Counter(meteor, "total", "end-to-end", 80, 0.97, 100, 10, False, True)
counter = Counter(
meteor, "total", "end-to-end", 80, 0.97, 100, 10, False, True
)
counter.execute()
meteor.fastq_dir = Path(tmpdirname) / "test2"
counter = Counter(meteor, "total", "end-to-end", 80, 0.97, 100, 10, False, True)
counter = Counter(
meteor, "total", "end-to-end", 80, 0.97, 100, 10, False, True
)
counter.execute()
meteor.mapped_sample_dir = meteor.mapping_dir / "test"
print(meteor.mapped_sample_dir)
Expand Down

0 comments on commit 802c8b0

Please sign in to comment.