Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/notebook dsb demux #12

Open
wants to merge 9 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 7 additions & 8 deletions dockers/basic-qc/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
FROM quay.io/hisplan/scri-notebook:0.0.3
FROM python:3.12-slim-bullseye

LABEL maintainer="Jaeyoung Chun (chunj@mskcc.org)"
LABEL maintainer="Tobias Krause (krauset@mskcc.org)"

RUN apt-get install -y zip
COPY requirements.txt /requirements.txt
RUN pip install -r /requirements.txt

RUN pip install seaborn==0.11.1 matplotlib humanfriendly

# hack: nbcovert 6+ doesn't work properly to run `nbconvert --to html_toc`
RUN pip install nbconvert==5.6.1 jupyter_contrib_nbextensions==0.5.1
RUN pip install nbconvert==5.6.1 jupyter_contrib_nbextensions==0.5.1 jinja2==3.0.3
RUN jupyter contrib nbextension install --user \
&& jupyter nbextension enable toc2
&& jupyter nbextension enable toc2
RUN python -m ipykernel install --name=python_qc

COPY ./notebooks/inspect-*.ipynb /opt/
3 changes: 1 addition & 2 deletions dockers/basic-qc/build.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
#!/bin/bash -e

source config.sh

docker build -t ${image_name}:${version} .
docker build --platform linux/amd64 -t ${image_name}:${version} .
6 changes: 3 additions & 3 deletions dockers/basic-qc/config.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
version="0.2.1"
version="0.2.3"

# docker related
registry="quay.io/hisplan"
image_name="sharp-basic-qc"
registry="docker.io"
image_name="sailmskcc/sharp-basic-qc"
Empty file modified dockers/basic-qc/notebooks/inspect-citeseq-v3.ipynb
100644 → 100755
Empty file.
Empty file modified dockers/basic-qc/notebooks/inspect-hashtag-v3.ipynb
100644 → 100755
Empty file.
Loading