LCNE-patchseq-analysis 0.0.1__tar.gz → 0.0.2__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.0.1 → lcne_patchseq_analysis-0.0.2}/.gitignore +3 -0
- {lcne_patchseq_analysis-0.0.1 → lcne_patchseq_analysis-0.0.2}/PKG-INFO +1 -1
- lcne_patchseq_analysis-0.0.2/environment/Dockerfile +27 -0
- lcne_patchseq_analysis-0.0.2/environment/postInstall +27 -0
- lcne_patchseq_analysis-0.0.2/src/LCNE_patchseq_analysis/__init__.py +2 -0
- {lcne_patchseq_analysis-0.0.1 → lcne_patchseq_analysis-0.0.2}/src/LCNE_patchseq_analysis.egg-info/PKG-INFO +1 -1
- {lcne_patchseq_analysis-0.0.1 → lcne_patchseq_analysis-0.0.2}/src/LCNE_patchseq_analysis.egg-info/SOURCES.txt +2 -0
- lcne_patchseq_analysis-0.0.1/src/LCNE_patchseq_analysis/__init__.py +0 -2
- {lcne_patchseq_analysis-0.0.1 → lcne_patchseq_analysis-0.0.2}/.flake8 +0 -0
- {lcne_patchseq_analysis-0.0.1 → lcne_patchseq_analysis-0.0.2}/.github/ISSUE_TEMPLATE/bug_report.md +0 -0
- {lcne_patchseq_analysis-0.0.1 → lcne_patchseq_analysis-0.0.2}/.github/ISSUE_TEMPLATE/feature_request.md +0 -0
- {lcne_patchseq_analysis-0.0.1 → lcne_patchseq_analysis-0.0.2}/.github/ISSUE_TEMPLATE/user-story.md +0 -0
- {lcne_patchseq_analysis-0.0.1 → lcne_patchseq_analysis-0.0.2}/.github/workflows/init.yml +0 -0
- {lcne_patchseq_analysis-0.0.1 → lcne_patchseq_analysis-0.0.2}/.github/workflows/tag_and_publish.yml +0 -0
- {lcne_patchseq_analysis-0.0.1 → lcne_patchseq_analysis-0.0.2}/.github/workflows/test_and_lint.yml +0 -0
- {lcne_patchseq_analysis-0.0.1 → lcne_patchseq_analysis-0.0.2}/LICENSE +0 -0
- {lcne_patchseq_analysis-0.0.1 → lcne_patchseq_analysis-0.0.2}/README.md +0 -0
- {lcne_patchseq_analysis-0.0.1 → lcne_patchseq_analysis-0.0.2}/docs/Makefile +0 -0
- {lcne_patchseq_analysis-0.0.1 → lcne_patchseq_analysis-0.0.2}/docs/make.bat +0 -0
- {lcne_patchseq_analysis-0.0.1 → lcne_patchseq_analysis-0.0.2}/docs/source/_static/dark-logo.svg +0 -0
- {lcne_patchseq_analysis-0.0.1 → lcne_patchseq_analysis-0.0.2}/docs/source/_static/favicon.ico +0 -0
- {lcne_patchseq_analysis-0.0.1 → lcne_patchseq_analysis-0.0.2}/docs/source/_static/light-logo.svg +0 -0
- {lcne_patchseq_analysis-0.0.1 → lcne_patchseq_analysis-0.0.2}/docs/source/conf.py +0 -0
- {lcne_patchseq_analysis-0.0.1 → lcne_patchseq_analysis-0.0.2}/docs/source/index.rst +0 -0
- {lcne_patchseq_analysis-0.0.1 → lcne_patchseq_analysis-0.0.2}/pyproject.toml +0 -0
- {lcne_patchseq_analysis-0.0.1 → lcne_patchseq_analysis-0.0.2}/setup.cfg +0 -0
- {lcne_patchseq_analysis-0.0.1 → lcne_patchseq_analysis-0.0.2}/setup.py +0 -0
- {lcne_patchseq_analysis-0.0.1 → lcne_patchseq_analysis-0.0.2}/src/LCNE_patchseq_analysis.egg-info/dependency_links.txt +0 -0
- {lcne_patchseq_analysis-0.0.1 → lcne_patchseq_analysis-0.0.2}/src/LCNE_patchseq_analysis.egg-info/requires.txt +0 -0
- {lcne_patchseq_analysis-0.0.1 → lcne_patchseq_analysis-0.0.2}/src/LCNE_patchseq_analysis.egg-info/top_level.txt +0 -0
- {lcne_patchseq_analysis-0.0.1 → lcne_patchseq_analysis-0.0.2}/tests/__init__.py +0 -0
- {lcne_patchseq_analysis-0.0.1 → lcne_patchseq_analysis-0.0.2}/tests/test_example.py +0 -0
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# hash:sha256:4381990f759d87b4e81e36c74374fc4954659b3ccf18d32d432653272a4faa93
|
|
2
|
+
ARG REGISTRY_HOST
|
|
3
|
+
FROM $REGISTRY_HOST/codeocean/jupyterlab:3.6.1-miniconda4.12.0-python3.9-ubuntu20.04
|
|
4
|
+
|
|
5
|
+
ARG DEBIAN_FRONTEND=noninteractive
|
|
6
|
+
|
|
7
|
+
ARG GIT_ASKPASS
|
|
8
|
+
ARG GIT_ACCESS_TOKEN
|
|
9
|
+
COPY git-askpass /
|
|
10
|
+
|
|
11
|
+
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
|
+
|
|
13
|
+
RUN cd /.code-server \
|
|
14
|
+
&& tar -xvf code-server.tar.gz \
|
|
15
|
+
&& rm code-server.tar.gz \
|
|
16
|
+
&& ln -s /.code-server/code-server-4.95.3-linux-amd64/bin/code-server /usr/bin/code-server
|
|
17
|
+
|
|
18
|
+
RUN mkdir -p /.vscode/extensions \
|
|
19
|
+
&& code-server --extensions-dir="/.vscode/extensions" --install-extension REditorSupport.R \
|
|
20
|
+
&& code-server --extensions-dir="/.vscode/extensions" --install-extension continue.continue \
|
|
21
|
+
&& code-server --extensions-dir="/.vscode/extensions" --install-extension ms-python.python \
|
|
22
|
+
&& code-server --extensions-dir="/.vscode/extensions" --install-extension ms-toolsai.jupyter \
|
|
23
|
+
&& code-server --extensions-dir="/.vscode/extensions" --install-extension reageyao.bioSyntax \
|
|
24
|
+
&& code-server --extensions-dir="/.vscode/extensions" --install-extension saoudrizwan.claude-dev
|
|
25
|
+
|
|
26
|
+
COPY postInstall /
|
|
27
|
+
RUN /postInstall
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
#!/usr/bin/env bash
|
|
2
|
+
set -e
|
|
3
|
+
|
|
4
|
+
# check if code-server is installed, and then install extensions into specified directory
|
|
5
|
+
if code-server --disable-telemetry --version; then
|
|
6
|
+
if [ ! -d "/.vscode/extensions" ]
|
|
7
|
+
then
|
|
8
|
+
echo "Directory /.vscode/extensions DOES NOT exists."
|
|
9
|
+
mkdir -p /.vscode/extensions/
|
|
10
|
+
fi
|
|
11
|
+
|
|
12
|
+
code-server --disable-telemetry --extensions-dir=/.vscode/extensions --install-extension ms-python.python
|
|
13
|
+
code-server --disable-telemetry --extensions-dir=/.vscode/extensions --install-extension njpwerner.autodocstring
|
|
14
|
+
code-server --disable-telemetry --extensions-dir=/.vscode/extensions --install-extension KevinRose.vsc-python-indent
|
|
15
|
+
code-server --disable-telemetry --extensions-dir=/.vscode/extensions --install-extension mhutchie.git-graph
|
|
16
|
+
code-server --disable-telemetry --extensions-dir=/.vscode/extensions --install-extension zhuangtongfa.material-theme
|
|
17
|
+
code-server --disable-telemetry --extensions-dir=/.vscode/extensions --install-extension ms-python.black-formatter
|
|
18
|
+
# code-server --disable-telemetry --extensions-dir=/.vscode/extensions --install-extension ryanluker.vscode-coverage-gutters
|
|
19
|
+
|
|
20
|
+
curl -L -o copilot_1.161.zip https://github.com/user-attachments/files/16859733/copilot_1.161.zip
|
|
21
|
+
unzip copilot_1.161.zip
|
|
22
|
+
code-server --disable-telemetry --extensions-dir=/.vscode/extensions --install-extension GitHub.copilot-1.161.0.vsix
|
|
23
|
+
rm copilot_1.161.zip GitHub.copilot-1.161.0.vsix
|
|
24
|
+
|
|
25
|
+
else
|
|
26
|
+
echo "code-server not found"
|
|
27
|
+
fi
|
|
@@ -17,6 +17,8 @@ docs/source/index.rst
|
|
|
17
17
|
docs/source/_static/dark-logo.svg
|
|
18
18
|
docs/source/_static/favicon.ico
|
|
19
19
|
docs/source/_static/light-logo.svg
|
|
20
|
+
environment/Dockerfile
|
|
21
|
+
environment/postInstall
|
|
20
22
|
src/LCNE_patchseq_analysis/__init__.py
|
|
21
23
|
src/LCNE_patchseq_analysis.egg-info/PKG-INFO
|
|
22
24
|
src/LCNE_patchseq_analysis.egg-info/SOURCES.txt
|
|
File without changes
|
{lcne_patchseq_analysis-0.0.1 → lcne_patchseq_analysis-0.0.2}/.github/ISSUE_TEMPLATE/bug_report.md
RENAMED
|
File without changes
|
|
File without changes
|
{lcne_patchseq_analysis-0.0.1 → lcne_patchseq_analysis-0.0.2}/.github/ISSUE_TEMPLATE/user-story.md
RENAMED
|
File without changes
|
|
File without changes
|
{lcne_patchseq_analysis-0.0.1 → lcne_patchseq_analysis-0.0.2}/.github/workflows/tag_and_publish.yml
RENAMED
|
File without changes
|
{lcne_patchseq_analysis-0.0.1 → lcne_patchseq_analysis-0.0.2}/.github/workflows/test_and_lint.yml
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{lcne_patchseq_analysis-0.0.1 → lcne_patchseq_analysis-0.0.2}/docs/source/_static/dark-logo.svg
RENAMED
|
File without changes
|
{lcne_patchseq_analysis-0.0.1 → lcne_patchseq_analysis-0.0.2}/docs/source/_static/favicon.ico
RENAMED
|
File without changes
|
{lcne_patchseq_analysis-0.0.1 → lcne_patchseq_analysis-0.0.2}/docs/source/_static/light-logo.svg
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|