We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e2146a commit f2b6f10Copy full SHA for f2b6f10
src/depiction_targeted_preproc/workflow/rules/rules_panel.smk
@@ -15,6 +15,20 @@ rule panel_standardized_full:
15
"--output-panel-path {output.csv}"
16
17
18
+# TODO use this in the visualization steps everywhere
19
+rule panel_visualize_full:
20
+ input:
21
+ csv="{sample}/panels/full.csv",
22
+ output:
23
+ csv="{sample}/panels/full_visualize.csv",
24
+ run:
25
+ import polars as pl
26
+
27
+ # TODO this absolutely needs to be configurable too
28
+ df = pl.read_csv(input.csv).with_columns(tol=pl.lit(0.25)).drop("type")
29
+ df.write_csv(output.csv)
30
31
32
rule panel_filter_calibration:
33
input:
34
csv="{sample}/panels/full.csv",
0 commit comments