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

Fixing a permissions issue in gtf-smash #140

Merged
merged 2 commits into from
Nov 27, 2024
Merged
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
6 changes: 5 additions & 1 deletion gtf-smash/Dockerfile_latest
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,11 @@
rm -rf /var/lib/apt/lists/*

# Pulling down collapse_annotation.py script from GitHub
RUN wget https://raw.githubusercontent.com/broadinstitute/gtex-pipeline/refs/tags/gtex_v8/gene_model/collapse_annotation.py
WORKDIR /usr/gtf-smash
RUN wget https://raw.githubusercontent.com/broadinstitute/gtex-pipeline/refs/tags/gtex_v8/gene_model/collapse_annotation.py && \

Check failure on line 23 in gtf-smash/Dockerfile_latest

View workflow job for this annotation

GitHub Actions / hadolint

DL3047 info: Avoid use of wget without progress bar. Use `wget --progress=dot:giga <url>`. Or consider using `-q` or `-nv` (shorthands for `--quiet` or `--no-verbose`).
chmod +x collapse_annotation.py
WORKDIR /
ENV PATH="${PATH}:/usr/gtf-smash"

# Installing packages via pip
RUN pip install --no-cache-dir pandas==2.2.3 bx-python==0.13.0
Expand Down
6 changes: 5 additions & 1 deletion gtf-smash/Dockerfile_v8
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,11 @@
rm -rf /var/lib/apt/lists/*

# Pulling down collapse_annotation.py script from GitHub
RUN wget https://raw.githubusercontent.com/broadinstitute/gtex-pipeline/refs/tags/gtex_v8/gene_model/collapse_annotation.py
WORKDIR /usr/gtf-smash
RUN wget https://raw.githubusercontent.com/broadinstitute/gtex-pipeline/refs/tags/gtex_v8/gene_model/collapse_annotation.py && \

Check failure on line 23 in gtf-smash/Dockerfile_v8

View workflow job for this annotation

GitHub Actions / hadolint

DL3047 info: Avoid use of wget without progress bar. Use `wget --progress=dot:giga <url>`. Or consider using `-q` or `-nv` (shorthands for `--quiet` or `--no-verbose`).
chmod +x collapse_annotation.py
WORKDIR /
ENV PATH="${PATH}:/usr/gtf-smash"

# Installing packages via pip
RUN pip install --no-cache-dir pandas==2.2.3 bx-python==0.13.0
Expand Down