You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/decima/cli/predict_genes.py
+18-1Lines changed: 18 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -38,8 +38,24 @@
38
38
is_flag=True,
39
39
help="Save the replicates in the output parquet file. Default: False.",
40
40
)
41
+
@click.option(
42
+
"--float-precision",
43
+
type=str,
44
+
default="32",
45
+
help="Floating-point precision to be used in calculations. Avaliable options include: '16-true', '16-mixed', 'bf16-true', 'bf16-mixed', '32-true', '64-true', '32', '16', and 'bf16'.",
Copy file name to clipboardExpand all lines: src/decima/cli/vep.py
+17Lines changed: 17 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -68,6 +68,17 @@
68
68
is_flag=True,
69
69
help="Save the replicates in the output parquet file. Default: False.",
70
70
)
71
+
@click.option(
72
+
"--disable-reference-cache",
73
+
is_flag=True,
74
+
help="Disables the reference cache which significantly speeds up the computation by caching the reference expression predictios in the metadata.",
75
+
)
76
+
@click.option(
77
+
"--float-precision",
78
+
type=str,
79
+
default="32",
80
+
help="Floating-point precision to be used in calculations. Avaliable options include: '16-true', '16-mixed', 'bf16-true', 'bf16-mixed', '32-true', '64-true', '32', '16', and 'bf16'.",
0 commit comments