Skip to content

Commit

Permalink
update installers
Browse files Browse the repository at this point in the history
  • Loading branch information
jalew188 committed Dec 26, 2023
1 parent 0a2889f commit 212ff8c
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 18 deletions.
4 changes: 2 additions & 2 deletions alphaviz/gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -1066,7 +1066,7 @@ def display_chromatogram(self, *args):
self.data.raw_data,
self.colorscale_qualitative.value,
)
chrom_widget = pn.Pane(
chrom_widget = pn.pane.panel(
chromatograms,
config=update_config('Chromatograms'),
sizing_mode='stretch_width',
Expand Down Expand Up @@ -1230,7 +1230,7 @@ def run_after_protein_selection(self, *args):
self.curr_protein_ids = prot_id
break

self.layout[6] = pn.Pane(
self.layout[6] = pn.pane.panel(
self.protein_coverage_plot,
config=update_config(f"{self.gene_name}_coverage_plot"),
align='center',
Expand Down
2 changes: 2 additions & 0 deletions release/pyinstaller/alphaviz.spec
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,8 @@ for _pkg in ["python","accelerate"]:
for _pkg in pkgs_to_check_at_runtime:
datas += copy_metadata(_pkg)

datas += copy_metadata('datashader')

a = Analysis(
[script_name],
pathex=[location],
Expand Down
5 changes: 1 addition & 4 deletions requirements/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,6 @@ peptdeep
alphabase
alpharaw

holoviews
xarray
dask
multipledispatch
plotly
datashader
plotly
10 changes: 3 additions & 7 deletions requirements/requirements_development.txt
Original file line number Diff line number Diff line change
@@ -1,18 +1,14 @@
jupyter==1.0.0
jupyter_contrib_nbextensions==0.5.1
pyinstaller
autodocsumm==0.2.6
sphinx-rtd-theme==0.5.2
twine==3.4.1
bumpversion
pipdeptree==2.1.0
ipykernel==6.4.0
pytest==6.2.5
tqdm
psutil
pytest==6.2.5
bumpversion
pyinstaller

pywin32; sys_platform=='win32'

alphatims
peptdeep
alphabase
7 changes: 2 additions & 5 deletions requirements/requirements_gui.txt
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
bokeh==2.4.2
matplotlib==3.4.3
datashader==0.13.0
holoviews==1.14.8
panel==0.12.4
pyteomics
pyteomics==4.5
plotly==5.8.0
beautifulsoup4==4.10.0
requests==2.27.1
#selenium
#chromedriver-binary
jinja2==3.0.2

alphatims
peptdeep
alphabase

0 comments on commit 212ff8c

Please sign in to comment.