We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dab86ec commit 033fc8aCopy full SHA for 033fc8a
2 files changed
malariagen_data/anoph/base_params.py
@@ -316,3 +316,10 @@ def validate_sample_selection_params(
316
to be overwritten. Default is False.
317
""",
318
]
319
+
320
+output_dir: TypeAlias = Annotated[
321
+ str,
322
+ """
323
+ A string indicating the desired output file location
324
+ """,
325
+]
malariagen_data/anoph/to_plink.py
@@ -58,7 +58,7 @@ def _create_plink_outfile(
58
59
def biallelic_snps_to_plink(
60
self,
61
- output_dir,
+ output_dir: base_params.output_dir,
62
region: base_params.regions,
63
n_snps: base_params.n_snps,
64
thin_offset: base_params.thin_offset = 0,
0 commit comments