From c910f29b0346f8257c85132ba68f38022d3abf88 Mon Sep 17 00:00:00 2001 From: Albert Dominguez Mantes <31998088+AlbertDominguez@users.noreply.github.com> Date: Wed, 18 Dec 2024 14:03:22 +0100 Subject: [PATCH] Add starfish integration to README --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 07d6090..71cecc6 100644 --- a/README.md +++ b/README.md @@ -137,6 +137,11 @@ We provide several pre-trained models that may be used out-of-the-box. The avail ### Changing the cache directory The default cache directory root folder (where pre-trained models and datasets are stored) is, by default, `~/.spotiflow`. If you want to change it for your use case, you can either set the environment variable `SPOTIFLOW_CACHE_DIR` to the path you want or directly pass the desired folder as an argument (`cache_dir`) to the `Spotiflow.from_pretrained()` method (note that if the latter is chosen, the path stored in the environment variable will be ignored). + +## Starfish integration + +Spotiflow can be seamlessly integrated in existing Starfish pipelines using our ```spotiflow.starfish.SpotiflowDetector``` as a spot detection method instead of the BlobDetection classes shipped with Starfish, requiring minimal code changes apart from the addition of Spotiflow to the existing environment where Starfish is installed. For an example, please refer to [the provided script](extra/run_starfish_spotiflow.py). + ## For developers We are open to contributions, and we indeed very much encourage them! Make sure that existing tests pass before submitting a PR, as well as adding new tests/updating the documentation accordingly for new features.