Skip to content

Commit

Permalink
Merge pull request #140 from getwilds/gtf-fix
Browse files Browse the repository at this point in the history
Fixing a permissions issue in gtf-smash
  • Loading branch information
tefirman authored Nov 27, 2024
2 parents 73f1a85 + ba863af commit 71a76ab
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
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 @@ RUN apt-get update && \
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 && \
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 @@ RUN apt-get update && \
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 && \
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

0 comments on commit 71a76ab

Please sign in to comment.