Skip to content

Commit 21b8582

Browse files
committed
update requirements and fix bugs in web annotation
1 parent 9ca0126 commit 21b8582

16 files changed

Lines changed: 659 additions & 622 deletions

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -294,3 +294,5 @@ ui/
294294
*.zip
295295
example/
296296
recipes/
297+
AppDir/
298+
appimage-build/

AppImageBuilder.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@ script:
33
# Remove any previous build
44
- rm -rf AppDir | true
55
# Copy the python application code into the AppDir
6-
- mamba create -y -p AppDir python=3.11
6+
- micromamba create -y -p ./AppDir python=3.11
77
- mkdir AppDir/opt && cp -r main.py trackplot pyproject.toml poetry.lock README.md ui AppDir/opt
88
- AppDir/bin/pip install -e AppDir/opt
99

1010
AppDir:
1111
app_info:
1212
id: org.appimage-crafters.trackplot
1313
name: trackplot
14-
version: 0.3.6
14+
version: 0.3.7
1515
# Set the python executable as entry point
1616
exec: "bin/python3"
1717
# Set the application main script path as argument. Use '$@' to forward CLI parameters

Pipfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ numexpr = "==2.8.6"
4242
numpy = "==1.24.4"
4343
packaging = "==23.2"
4444
pandas = "==1.5.3"
45-
pillow = "==10.1.0"
45+
pillow = "*"
4646
py-cpuinfo = "==9.0.0"
4747
pybigwig = "==0.3.22"
4848
pycparser = "==2.21"

poetry.lock

Lines changed: 255 additions & 237 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "trackplot"
3-
version = "0.3.6"
3+
version = "0.3.7"
44
description = "The trackplot is a tool for visualizing various next-generation sequencing (NGS) data, including DNA-seq, RNA-seq, single-cell RNA-seq and full-length sequencing datasets. https://sashimi.readthedocs.io/"
55
authors = ["ygidtu <ygidtu@gmail.com>"]
66
license = "BSD-3"

requirements.txt

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,35 +12,35 @@ colorama==0.4.6 ; python_version >= "3.8" and python_version < "3.12" and (platf
1212
contourpy==1.1.1 ; python_version >= "3.8" and python_version < "3.12"
1313
cooler==0.9.3 ; python_version >= "3.8" and python_version < "3.12"
1414
cycler==0.12.1 ; python_version >= "3.8" and python_version < "3.12"
15-
cython==3.0.5 ; python_version >= "3.8" and python_version < "3.12"
15+
cython==3.0.8 ; python_version >= "3.8" and python_version < "3.12"
1616
cytoolz==0.12.2 ; python_version >= "3.8" and python_version < "3.12"
1717
dill==0.3.7 ; python_version >= "3.8" and python_version < "3.12"
1818
filetype==1.2.0 ; python_version >= "3.8" and python_version < "3.12"
1919
flask==2.3.3 ; python_version >= "3.8" and python_version < "3.12"
20-
fonttools==4.45.1 ; python_version >= "3.8" and python_version < "3.12"
20+
fonttools==4.47.2 ; python_version >= "3.8" and python_version < "3.12"
2121
h5py==3.10.0 ; python_version >= "3.8" and python_version < "3.12"
2222
hicmatrix==15 ; python_version >= "3.8" and python_version < "3.12"
23-
idna==3.4 ; python_version >= "3.8" and python_version < "3.12"
24-
importlib-metadata==6.8.0 ; python_version >= "3.8" and python_version < "3.12"
23+
idna==3.6 ; python_version >= "3.8" and python_version < "3.12"
24+
importlib-metadata==7.0.1 ; python_version >= "3.8" and python_version < "3.12"
2525
importlib-resources==6.1.1 ; python_version >= "3.8" and python_version < "3.10"
2626
intervaltree==3.1.0 ; python_version >= "3.8" and python_version < "3.12"
2727
itsdangerous==2.1.2 ; python_version >= "3.8" and python_version < "3.12"
28-
jinja2==3.1.2 ; python_version >= "3.8" and python_version < "3.12"
28+
jinja2==3.1.3 ; python_version >= "3.8" and python_version < "3.12"
2929
kiwisolver==1.4.5 ; python_version >= "3.8" and python_version < "3.12"
3030
loguru==0.6.0 ; python_version >= "3.8" and python_version < "3.12"
31-
markupsafe==2.1.3 ; python_version >= "3.8" and python_version < "3.12"
31+
markupsafe==2.1.4 ; python_version >= "3.8" and python_version < "3.12"
3232
matplotlib==3.7.4 ; python_version >= "3.8" and python_version < "3.12"
3333
msgpack==1.0.7 ; python_version >= "3.8" and python_version < "3.12"
3434
multiprocess==0.70.15 ; python_version >= "3.8" and python_version < "3.12"
3535
numexpr==2.8.6 ; python_version >= "3.8" and python_version < "3.12"
3636
numpy==1.24.4 ; python_version >= "3.8" and python_version < "3.12"
3737
packaging==23.2 ; python_version >= "3.8" and python_version < "3.12"
3838
pandas==1.5.3 ; python_version >= "3.8" and python_version < "3.12"
39-
pillow==10.1.0 ; python_version >= "3.8" and python_version < "3.12"
39+
pillow==10.2.0 ; python_version >= "3.8" and python_version < "3.12"
4040
py-cpuinfo==9.0.0 ; python_version >= "3.8" and python_version < "3.12"
4141
pybigwig==0.3.22 ; python_version >= "3.8" and python_version < "3.12"
4242
pycparser==2.21 ; python_version >= "3.8" and python_version < "3.12"
43-
pyfaidx==0.7.2.2 ; python_version >= "3.8" and python_version < "3.12"
43+
pyfaidx==0.8.1.1 ; python_version >= "3.8" and python_version < "3.12"
4444
pyparsing==3.1.1 ; python_version >= "3.8" and python_version < "3.12"
4545
pysam==0.21.0 ; python_version >= "3.8" and python_version < "3.12"
4646
python-dateutil==2.8.2 ; python_version >= "3.8" and python_version < "3.12"
@@ -49,7 +49,7 @@ pyyaml==6.0.1 ; python_version >= "3.8" and python_version < "3.12"
4949
requests==2.31.0 ; python_version >= "3.8" and python_version < "3.12"
5050
scipy==1.10.1 ; python_version >= "3.8" and python_version < "3.12"
5151
seaborn==0.12.2 ; python_version >= "3.8" and python_version < "3.12"
52-
setuptools==69.0.2 ; python_version >= "3.8" and python_version < "3.12"
52+
setuptools==69.0.3 ; python_version >= "3.8" and python_version < "3.12"
5353
simplejson==3.19.2 ; python_version >= "3.8" and python_version < "3.12"
5454
six==1.16.0 ; python_version >= "3.8" and python_version < "3.12"
5555
sortedcontainers==2.4.0 ; python_version >= "3.8" and python_version < "3.12"

trackplot/plot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
faulthandler.enable()
3030

3131

32-
__version__ = "0.3.6"
32+
__version__ = "0.3.7"
3333
__author__ = "ygidtu & Ran Zhou"
3434
__email__ = "ygidtu@gmail.com"
3535

web/package.json

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,21 @@
11
{
22
"name": "trackplot",
33
"private": true,
4-
"version": "0.3.6",
4+
"version": "0.3.7",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",
88
"build": "vite build",
99
"preview": "vite preview"
1010
},
1111
"dependencies": {
12-
"@element-plus/icons-vue": "^2.1.0",
13-
"@types/file-saver": "^2.0.5",
14-
"axios": "^0.27.2",
15-
"element-plus": "^2.3.14",
12+
"@element-plus/icons-vue": "^2.3.1",
13+
"@types/file-saver": "^2.0.7",
14+
"axios": "^1.6.5",
15+
"element-plus": "^2.5.3",
1616
"file-saver": "^2.0.5",
17-
"typescript": "^5.2.2",
18-
"vue": "^3.3.4",
19-
"vue-axios": "^3.5.2",
17+
"typescript": "^5.3.3",
18+
"vue": "^3.4.15",
2019
"vue-cookie-next": "^1.3.0",
2120
"vue-cookies": "^1.8.3",
2221
"vue-cookies-ts": "^1.5.19",
@@ -26,6 +25,6 @@
2625
"@vitejs/plugin-vue": "^3.2.0",
2726
"unplugin-auto-import": "^0.11.5",
2827
"unplugin-vue-components": "^0.22.12",
29-
"vite": "^3.2.7"
28+
"vite": "^3.2.8"
3029
}
3130
}

0 commit comments

Comments
 (0)