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
*`--min-transcripts INTEGER`: Cells with less transcript than this integer will be filtered [default: 0]
92
92
*`--min-intensity-ratio FLOAT`: Cells whose mean channel intensity is less than `min_intensity_ratio * quantile_90` will be filtered [default: 0]
93
93
*`--image-key TEXT`: Optional image key of the SpatialData object. By default, considers the only one image. It can be useful if another image is added later on
94
-
*`--method-name TEXT`: If segmentation was performed with a generic method, this is the name of the method used.[required]
94
+
*`--method-name TEXT`: If segmentation was performed with a generic method, this is the name of the method used.
Now, follow our [snakemake tutorial](../tutorials/snakemake) to get started.
71
+
Now, follow our [snakemake tutorial](../tutorials/snakemake) to run your first pipeline.
72
72
73
73
!!! Note
74
74
You can also use a separate environment for `snakemake`. In this case, you don't need to install the `'snakemake'` extra when installing `sopa`. But you may still need to install other extras, for instance `'cellpose'` if you plan to run Cellpose.
Copy file name to clipboardExpand all lines: docs/tutorials/snakemake.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,7 +26,7 @@ Note the relative path of your config since you'll need it later, e.g. `config/m
26
26
2. Then, activate your environment that has the snakemake command, and go to the `workflow` directory inside the `sopa` directory that you cloned earlier:
27
27
```sh
28
28
conda activate sopa # or an environment that has `snakemake`
29
-
cdsopa/workflow # your own personal path to the workflow directory
29
+
cd workflow # run this at the root of the 'sopa' directory
30
30
```
31
31
32
32
1. You can either execute the pipeline locally, or on a high-performance-cluster (choose the right option below)
@@ -69,7 +69,7 @@ Make sure you have setup everything as detailed in this tutorial, and then run t
69
69
Make sure you have installed sopa with the Cellpose extra
70
70
```sh
71
71
conda activate sopa # or an environment that has `snakemake`
72
-
cd sopa/workflow # your own personal path to the workflow directory
72
+
cd workflow # run this at the root of the 'sopa' directory
73
73
74
74
# you can replace tuto.zarr by another path where the data will be saved
0 commit comments