Skip to content

Commit 8d825cb

Browse files
committed
update dask dependency warning messages for clarity
1 parent 8fc41ec commit 8d825cb

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

alphaquant/ptm/ptmsite_mapping.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
except ModuleNotFoundError:
2727
HAS_DASK = False
2828
warnings.warn(
29-
"Dependency 'dask' not installed. If you want to use its functionality, install alphaquant with the 'dask' extra. Falling back to non-dask based processing."
29+
"Dependency 'dask' not installed. If you want to use its functionality, install it with: `pip install \"alphaquant[dask]\"` . ImportError will be raised if the data requires out-of-memory processing."
3030
)
3131

3232

alphaquant/quant_reader/longformat_reader.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
HAS_DASK = True
1111
except ModuleNotFoundError:
1212
warnings.warn(
13-
"Dependency 'dask' not installed. If you want to use its functionality, install alphaquant with the 'dask' extra. Falling back to non-dask based processing."
13+
"Dependency 'dask' not installed. If you want to use its functionality, install it with: `pip install \"alphaquant[dask]\"` . Falling back to non-dask based processing."
1414
)
1515
HAS_DASK = False
1616

0 commit comments

Comments
 (0)