Skip to content

Commit c837136

Browse files
committed
fix docs
1 parent bfbf6ec commit c837136

File tree

2 files changed

+3
-21
lines changed

2 files changed

+3
-21
lines changed

docs/install.md

Lines changed: 3 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -112,26 +112,13 @@ If you don't plan on reattaching to a container, you should run with `--rm` so i
112112

113113
#### Plotting
114114

115-
##### Optional Python Dependencies
116-
117-
The base installation includes all required dependencies for core partis functionality.
118-
However, some advanced plotting and analysis features require additional Python packages that can be installed as optional extras:
119-
120-
**Plotting extras** (for advanced visualization):
115+
In order to turn on plotting (typically by setting `--plotdir`) you'll have to install some extra dependencies:
121116
```bash
122117
pip install partis-bcr[plotting]
123118
```
124-
Includes: `circlify`, `ete3`, `joypy`
125-
126-
**Full extras** (all optional features):
127-
```bash
128-
pip install partis-bcr[full]
129-
```
130-
Includes: `circlify`, `ete3`, `joypy`, `levenshtein`
131-
132-
If installing from source, use:
119+
or if installing from source:
133120
```bash
134-
pip install -e .[plotting] # or .[full]
121+
pip install -e .[plotting]
135122
```
136123

137124
##### MDS Plotting with R

setup.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -140,11 +140,6 @@ def has_ext_modules(self):
140140
'circlify',
141141
'ete3',
142142
'joypy',
143-
],
144-
'full': [
145-
'circlify',
146-
'ete3',
147-
'joypy',
148143
'levenshtein',
149144
],
150145
},

0 commit comments

Comments
 (0)