LCNE-patchseq-analysis 0.2.0__tar.gz → 0.4.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- lcne_patchseq_analysis-0.4.0/.codeocean/datasets.json +9 -0
- {lcne_patchseq_analysis-0.2.0 → lcne_patchseq_analysis-0.4.0}/.gitignore +2 -1
- {lcne_patchseq_analysis-0.2.0 → lcne_patchseq_analysis-0.4.0}/PKG-INFO +4 -2
- {lcne_patchseq_analysis-0.2.0 → lcne_patchseq_analysis-0.4.0}/README.md +1 -1
- {lcne_patchseq_analysis-0.2.0 → lcne_patchseq_analysis-0.4.0}/environment/Dockerfile +6 -6
- {lcne_patchseq_analysis-0.2.0 → lcne_patchseq_analysis-0.4.0}/environment/postInstall +1 -0
- lcne_patchseq_analysis-0.4.0/notebook/playground.ipynb +1453 -0
- {lcne_patchseq_analysis-0.2.0 → lcne_patchseq_analysis-0.4.0}/pyproject.toml +4 -1
- lcne_patchseq_analysis-0.4.0/src/LCNE_patchseq_analysis/__init__.py +5 -0
- lcne_patchseq_analysis-0.4.0/src/LCNE_patchseq_analysis/data_util/__init__.py +1 -0
- lcne_patchseq_analysis-0.4.0/src/LCNE_patchseq_analysis/data_util/metadata.py +63 -0
- lcne_patchseq_analysis-0.4.0/src/LCNE_patchseq_analysis/data_util/nwb.py +70 -0
- lcne_patchseq_analysis-0.4.0/src/LCNE_patchseq_analysis/panel_nwb_viz.py +149 -0
- lcne_patchseq_analysis-0.4.0/src/LCNE_patchseq_analysis/pipeline_util/__init__.py +1 -0
- lcne_patchseq_analysis-0.4.0/src/LCNE_patchseq_analysis/pipeline_util/ephys.py +123 -0
- {lcne_patchseq_analysis-0.2.0/src/LCNE_patchseq_analysis/data_util → lcne_patchseq_analysis-0.4.0/src/LCNE_patchseq_analysis/pipeline_util}/lims.py +12 -5
- lcne_patchseq_analysis-0.4.0/src/LCNE_patchseq_analysis/pipeline_util/metadata.py +183 -0
- {lcne_patchseq_analysis-0.2.0 → lcne_patchseq_analysis-0.4.0}/src/LCNE_patchseq_analysis.egg-info/PKG-INFO +4 -2
- {lcne_patchseq_analysis-0.2.0 → lcne_patchseq_analysis-0.4.0}/src/LCNE_patchseq_analysis.egg-info/SOURCES.txt +8 -3
- {lcne_patchseq_analysis-0.2.0 → lcne_patchseq_analysis-0.4.0}/src/LCNE_patchseq_analysis.egg-info/requires.txt +2 -0
- lcne_patchseq_analysis-0.2.0/notebook/demo.ipynb +0 -291
- lcne_patchseq_analysis-0.2.0/src/LCNE_patchseq_analysis/__init__.py +0 -2
- lcne_patchseq_analysis-0.2.0/src/LCNE_patchseq_analysis/data_util/__init__.py +0 -1
- lcne_patchseq_analysis-0.2.0/src/LCNE_patchseq_analysis/data_util/ephys.py +0 -1
- lcne_patchseq_analysis-0.2.0/src/LCNE_patchseq_analysis/data_util/metadata.py +0 -129
- {lcne_patchseq_analysis-0.2.0 → lcne_patchseq_analysis-0.4.0}/.flake8 +0 -0
- {lcne_patchseq_analysis-0.2.0 → lcne_patchseq_analysis-0.4.0}/.github/ISSUE_TEMPLATE/bug_report.md +0 -0
- {lcne_patchseq_analysis-0.2.0 → lcne_patchseq_analysis-0.4.0}/.github/ISSUE_TEMPLATE/feature_request.md +0 -0
- {lcne_patchseq_analysis-0.2.0 → lcne_patchseq_analysis-0.4.0}/.github/ISSUE_TEMPLATE/user-story.md +0 -0
- {lcne_patchseq_analysis-0.2.0 → lcne_patchseq_analysis-0.4.0}/.github/workflows/init.yml +0 -0
- {lcne_patchseq_analysis-0.2.0 → lcne_patchseq_analysis-0.4.0}/.github/workflows/tag_and_publish.yml +0 -0
- {lcne_patchseq_analysis-0.2.0 → lcne_patchseq_analysis-0.4.0}/.github/workflows/test_and_lint.yml +0 -0
- {lcne_patchseq_analysis-0.2.0 → lcne_patchseq_analysis-0.4.0}/LICENSE +0 -0
- {lcne_patchseq_analysis-0.2.0 → lcne_patchseq_analysis-0.4.0}/docs/Makefile +0 -0
- {lcne_patchseq_analysis-0.2.0 → lcne_patchseq_analysis-0.4.0}/docs/make.bat +0 -0
- {lcne_patchseq_analysis-0.2.0 → lcne_patchseq_analysis-0.4.0}/docs/source/_static/dark-logo.svg +0 -0
- {lcne_patchseq_analysis-0.2.0 → lcne_patchseq_analysis-0.4.0}/docs/source/_static/favicon.ico +0 -0
- {lcne_patchseq_analysis-0.2.0 → lcne_patchseq_analysis-0.4.0}/docs/source/_static/light-logo.svg +0 -0
- {lcne_patchseq_analysis-0.2.0 → lcne_patchseq_analysis-0.4.0}/docs/source/conf.py +0 -0
- {lcne_patchseq_analysis-0.2.0 → lcne_patchseq_analysis-0.4.0}/docs/source/index.rst +0 -0
- {lcne_patchseq_analysis-0.2.0 → lcne_patchseq_analysis-0.4.0}/setup.cfg +0 -0
- {lcne_patchseq_analysis-0.2.0 → lcne_patchseq_analysis-0.4.0}/setup.py +0 -0
- {lcne_patchseq_analysis-0.2.0 → lcne_patchseq_analysis-0.4.0}/src/LCNE_patchseq_analysis.egg-info/dependency_links.txt +0 -0
- {lcne_patchseq_analysis-0.2.0 → lcne_patchseq_analysis-0.4.0}/src/LCNE_patchseq_analysis.egg-info/top_level.txt +0 -0
- {lcne_patchseq_analysis-0.2.0 → lcne_patchseq_analysis-0.4.0}/tests/__init__.py +0 -0
- {lcne_patchseq_analysis-0.2.0 → lcne_patchseq_analysis-0.4.0}/tests/test_example.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: LCNE-patchseq-analysis
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.4.0
|
|
4
4
|
Summary: Generated from aind-library-template
|
|
5
5
|
Author: Allen Institute for Neural Dynamics
|
|
6
6
|
Author-email: Han Hou <han.hou@alleninstitute.org>
|
|
@@ -12,6 +12,8 @@ License-File: LICENSE
|
|
|
12
12
|
Requires-Dist: numpy
|
|
13
13
|
Requires-Dist: pandas
|
|
14
14
|
Requires-Dist: matplotlib
|
|
15
|
+
Requires-Dist: panel
|
|
16
|
+
Requires-Dist: jupyter_bokeh
|
|
15
17
|
Provides-Extra: dev
|
|
16
18
|
Requires-Dist: black; extra == "dev"
|
|
17
19
|
Requires-Dist: coverage; extra == "dev"
|
|
@@ -36,7 +38,7 @@ Requires-Dist: pg8000; extra == "pipeline"
|
|
|
36
38
|
[](LICENSE)
|
|
37
39
|

|
|
38
40
|
[](https://github.com/semantic-release/semantic-release)
|
|
39
|
-

|
|
40
42
|

|
|
41
43
|

|
|
42
44
|
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
[](LICENSE)
|
|
4
4
|

|
|
5
5
|
[](https://github.com/semantic-release/semantic-release)
|
|
6
|
-

|
|
7
7
|

|
|
8
8
|

|
|
9
9
|
|
|
@@ -1,13 +1,9 @@
|
|
|
1
|
-
# hash:sha256:
|
|
1
|
+
# hash:sha256:7dbb41516855b7a4c5c2a305cc83a36b2ceee9b1e4f83644fbeaffd8054316cf
|
|
2
2
|
ARG REGISTRY_HOST
|
|
3
|
-
FROM $REGISTRY_HOST/codeocean/
|
|
3
|
+
FROM $REGISTRY_HOST/codeocean/mambaforge3:23.1.0-4-python3.10.12-ubuntu22.04
|
|
4
4
|
|
|
5
5
|
ARG DEBIAN_FRONTEND=noninteractive
|
|
6
6
|
|
|
7
|
-
ARG GIT_ASKPASS
|
|
8
|
-
ARG GIT_ACCESS_TOKEN
|
|
9
|
-
COPY git-askpass /
|
|
10
|
-
|
|
11
7
|
ADD "https://github.com/coder/code-server/releases/download/v4.95.3/code-server-4.95.3-linux-amd64.tar.gz" /.code-server/code-server.tar.gz
|
|
12
8
|
|
|
13
9
|
RUN cd /.code-server \
|
|
@@ -15,5 +11,9 @@ RUN cd /.code-server \
|
|
|
15
11
|
&& rm code-server.tar.gz \
|
|
16
12
|
&& ln -s /.code-server/code-server-4.95.3-linux-amd64/bin/code-server /usr/bin/code-server
|
|
17
13
|
|
|
14
|
+
ARG GIT_ASKPASS
|
|
15
|
+
ARG GIT_ACCESS_TOKEN
|
|
16
|
+
COPY git-askpass /
|
|
17
|
+
|
|
18
18
|
COPY postInstall /
|
|
19
19
|
RUN /postInstall
|
|
@@ -16,6 +16,7 @@ if code-server --disable-telemetry --version; then
|
|
|
16
16
|
code-server --disable-telemetry --extensions-dir=/.vscode/extensions --install-extension mhutchie.git-graph
|
|
17
17
|
code-server --disable-telemetry --extensions-dir=/.vscode/extensions --install-extension zhuangtongfa.material-theme
|
|
18
18
|
code-server --disable-telemetry --extensions-dir=/.vscode/extensions --install-extension ms-python.black-formatter
|
|
19
|
+
code-server --disable-telemetry --extensions-dir=/.vscode/extensions --install-extension randomfractalsinc.vscode-data-preview
|
|
19
20
|
# code-server --disable-telemetry --extensions-dir=/.vscode/extensions --install-extension ryanluker.vscode-coverage-gutters
|
|
20
21
|
|
|
21
22
|
curl -L -o copilot_1.161.zip https://github.com/user-attachments/files/16859733/copilot_1.161.zip
|