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
# MutClust v0.1.2
## Major Changes
- Added Docker support for easy deployment and reproducibility
- Improved test coverage and stability
- Updated documentation with Docker usage examples
- Updated dependency specifications
Copy file name to clipboardExpand all lines: README.md
+14Lines changed: 14 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -32,6 +32,20 @@ cd mutclust
32
32
pip install .
33
33
```
34
34
35
+
### Docker Installation
36
+
37
+
For users who prefer containerized deployment, MutClust is available as a Docker container:
38
+
39
+
```bash
40
+
# Build the container
41
+
docker build -t mutclust .
42
+
43
+
# Run MutClust with your data
44
+
docker run -v /path/to/your/data:/data mutclust --expression /data/your_expression.tsv --output /data/results
45
+
```
46
+
47
+
The container uses Ubuntu 20.04 and includes all necessary dependencies. Mount your data directory to `/data` inside the container to access your files.
0 commit comments